mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-08-02 16:53:15 +00:00
39 lines
797 B
HTML
39 lines
797 B
HTML
<!--
|
|
SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
|
|
</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>
|