Geniální software
This commit is contained in:
52
public/index.html
Normal file
52
public/index.html
Normal file
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="./style.css" />
|
||||
<title>Registrace</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>REGISTRACE DO TAJNÉHO ELITNÍHO KLUBU</h1>
|
||||
<form method="post" action="/register">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="invite">Kód pozvánky</label>
|
||||
</td>
|
||||
<td>
|
||||
<input id="invite" name="invite" type="text" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="username">Uživatelské jméno</label>
|
||||
<br>
|
||||
<small>(Část emailu před zavináčem)</small>
|
||||
</td>
|
||||
<td>
|
||||
<input id="username" name="username" type="text" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="password">Heslo</label>
|
||||
</td>
|
||||
<td>
|
||||
<input id="password" name="password" type="password" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<input type="submit" value="Registrovat" />
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user