ng-implementation/my-workspace/projects/sae-lib/translate-texts/translate-texts.html

19 lines
599 B
HTML
Raw Normal View History

2025-08-07 16:06:25 +02:00
<div class="translate-texts">
<div class="columns">
<div class="column">
<!-- delete button from_text-->
<button class="delete-button button" (click)="emptyText('fromText')">x</button>
2025-08-08 16:16:38 +02:00
<textarea name="from_text" id="from_text" cols="30" rows="10"
placeholder=""
[(ngModel)]="fromText"></textarea>
2025-08-07 16:06:25 +02:00
</div>
<div class="column">
<button class="delete-button button" (click)="emptyText('toText')">x</button>
2025-08-08 10:57:00 +02:00
<textarea name="to_text" id="to_text" cols="30" rows="10" [(ngModel)]="toText"></textarea>
2025-08-07 16:06:25 +02:00
</div>
</div>
</div>