Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h1>Asymmetric</h1>
<form [formGroup]="encryptAsymmetricForm" (ngSubmit)="encryptAsymmetric()">
<div class="field">
<label>Text</label>
<input type="text" formControlName="textToEncrypt" required placeholder="Enter text to encrypt">
<textarea rows="5" formControlName="textToEncrypt" required placeholder="Enter text to encrypt"></textarea>
</div>
<div class="field">
<label>Public key</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ <h1>Derive and Encrypt</h1>
<!-- Common inputs -->
<div class="field">
<label>Plaintext</label>
<input type="text" formControlName="plaintext" required placeholder="Enter text to encrypt">
<textarea rows="5" formControlName="plaintext" required placeholder="Enter text to encrypt"></textarea>
</div>
<div class="field">
<label>Password</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1>Encryption / Decryption</h1>
<form [formGroup]="encryptionForm" (ngSubmit)="encrypt()">
<div class="field">
<label>Text</label>
<input type="text" formControlName="encryptText" required placeholder="Enter text to encrypt">
<textarea rows="5" formControlName="encryptText" required placeholder="Enter text to encrypt"></textarea>
</div>
<div class="field">
<label>Password</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1>Secret Key Encryption</h1>
<form [formGroup]="encryptForm" (ngSubmit)="encrypt()">
<div class="field">
<label>Text</label>
<input type="text" formControlName="textToEncrypt" required placeholder="Enter text to encrypt">
<textarea rows="5" formControlName="textToEncrypt" required placeholder="Enter text to encrypt"></textarea>
</div>
<div class="field">
<label>Secret key</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1>Utilities</h1>
<form [formGroup]="encodeDecodeForm">
<div class="field">
<label>Text</label>
<input type="text" formControlName="enDecodeText" required placeholder="Enter text">
<textarea rows="5" formControlName="enDecodeText" required placeholder="Enter text"></textarea>
</div>
<div class="btn-row">
<button type="button" class="btn btn-primary" (click)="encode()">Encode</button>
Expand Down
Loading