mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-04-05 08:03:28 +03:00
32 lines
666 B
HTML
32 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>
|