mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-08-13 14:03:16 +00:00
33 lines
666 B
HTML
33 lines
666 B
HTML
</h1>
|
|
<label class="sitekey-form__label" for="description">
|
|
Description
|
|
<input
|
|
<. if READONLY { .>
|
|
<.= "readonly='readonly'" .>
|
|
<. } .>
|
|
class="sitekey-form__input"
|
|
type="text"
|
|
name="description"
|
|
id="description"
|
|
required
|
|
<. if !name.trim().is_empty() { .>
|
|
value="<.= name .>"
|
|
<. } .>
|
|
/>
|
|
</label>
|
|
<label class="sitekey-form__label" for="duration">
|
|
Cooldown Duratoin(in seconds)
|
|
<input
|
|
<. if READONLY { .>
|
|
<.= "readonly='readonly'" .>
|
|
<. } .>
|
|
class="sitekey-form__input"
|
|
type="number"
|
|
name="duration"
|
|
id="duration"
|
|
min=0
|
|
required
|
|
value="<.= duration .>"
|
|
/>
|
|
</label>
|