2022-01-08 22:16:05 +05:30

91 lines
2.7 KiB
TypeScript

/*
* Copyright (C) 2022 Aravinth Manivannan <realaravinth@batsense.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
export { trim, fillDescription } from "../../advance/ts/setupTests";
const fillField = (id: string, value: number | string) => {
const inputElement = <HTMLInputElement>document.getElementById(id);
inputElement.value = value.toString();
};
/** Fill peak sustainable traffic in add captcha form */
export const fillPeakSustainable = (traffic: number | string): void =>
fillField("peak_sustainable_traffic", traffic);
/** Fill average traffic in add captcha form */
export const fillAvgTraffic = (traffic: number | string): void =>
fillField("avg_traffic", traffic);
/** Fill broke_my_site_traffic in add captcha form */
export const fillBrokemySite = (traffic: number | string): void =>
fillField("broke_my_site_traffic", traffic);
export const getAddForm = (): string =>
`
<form class="sitekey-form" action="/api/v1/mcaptcha/levels/add" method="post">
<h1 class="form__title">
Add Sitekey
</h1>
<label class="sitekey-form__label" for="description">
Description
<input
class="sitekey-form__input"
type="text"
name="description"
id="description"
required=""
>
</label>
<label class="sitekey-form__label" for="avg_traffic">
Average Traffic of your website
<input
class="sitekey-form__input"
type="number"
name="avg_traffic"
id="avg_traffic"
required
value="<.= avg_traffic .>"
/>
</label>
<label class="sitekey-form__label" for="avg_traffic">
Maximum traffic that your website can handle
<input
class="sitekey-form__input"
type="number"
name="peak_sustainable_traffic"
id="peak_sustainable_traffic"
required
value="<.= peak_sustainable_traffic .>"
/>
</label>
<label class="sitekey-form__label" for="avg_traffic">
Traffic that broke your website(Optional)
<input
class="sitekey-form__input"
type="number"
name="broke_my_site_traffic"
id="broke_my_site_traffic"
value="<.= broke_my_site_traffic .>"
/>
</label>
<button class="sitekey-form__submit" type="submit">Submit</button>
</form>
`;