Initial commit
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
commit
5f64caf6bc
13 changed files with 400 additions and 0 deletions
34
create/index.html
Normal file
34
create/index.html
Normal file
|
@ -0,0 +1,34 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>CensoredManager - Create</title>
|
||||
<link rel="stylesheet" href="/assets/css/styles.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<form id="create-form">
|
||||
<label>
|
||||
Cheque creation form
|
||||
<br/>
|
||||
<input type="number" id="amount" placeholder="Coin amount (per activation)" required/>
|
||||
<input type="number" id="act" placeholder="Activation amount" required/>
|
||||
</label>
|
||||
<button type="submit">Create</button>
|
||||
<span id="notification"></span>
|
||||
</form>
|
||||
</div>
|
||||
<hr/>
|
||||
<div>
|
||||
<a href=".."><button>Back</button></a>
|
||||
Balance: <span class="highlighted" id="balance">-</span>
|
||||
<span class="right footer">
|
||||
CensoredManager<br/>
|
||||
<sup><a href="/">home</a> - <a href="https://git.mctaylors.ru/mctaylors/CensoredManager">source code</a></sup>
|
||||
</span>
|
||||
</div>
|
||||
<script src="/assets/js/shared.js"></script>
|
||||
<script src="/assets/js/cookie.js"></script>
|
||||
<script src="/assets/js/create.js"></script>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue