mirror of
https://github.com/v1k45/pastepass.git
synced 2026-01-05 21:15:29 +00:00
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
package views
|
|
|
|
templ Index() {
|
|
@base() {
|
|
<form method="post" onsubmit="event.target.querySelector('button').setAttribute('aria-busy', 'true');">
|
|
<textarea
|
|
name="text"
|
|
placeholder="Paste your secret here, select expiration time and click 'Paste'"
|
|
aria-label="Paste your secret here, select expiration time and click 'Paste'"
|
|
rows="10"
|
|
required
|
|
autofocus
|
|
>
|
|
</textarea>
|
|
<div style="display: flex; align-items: end; justify-content: space-between;">
|
|
<div style="min-width: 33.33%">
|
|
<label for="expiration">Expires In</label>
|
|
<select id="expiration" name="expiration" aria-label="Expires In">
|
|
<option value="1h" selected>1 Hour</option>
|
|
<option value="1d">1 Day</option>
|
|
<option value="1w">1 Week</option>
|
|
<option value="2w">2 weeks</option>
|
|
<option value="4w">4 weeks</option>
|
|
</select>
|
|
</div>
|
|
<div style="min-width: 33.33%">
|
|
<button type="submit">Paste</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
}
|
|
}
|