29 lines
1 KiB
Cheetah
29 lines
1 KiB
Cheetah
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ .title }}</title>
|
|
{{template "head" .}}
|
|
</head>
|
|
<body>
|
|
{{template "navbar" .}}
|
|
|
|
<div class="position-absolute top-50 start-50 translate-middle">
|
|
<form action="http://localhost:8080/register" method="POST">
|
|
<div class="mb-3">
|
|
<label for="username" class="form-label">Username</label>
|
|
<input type="text" class="form-control" id="username" aria-describedby="emailHelp">
|
|
<div id="emailHelp" class="form-text">The username needs to be unique</div>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="password" class="form-label">Password</label>
|
|
<input type="password" class="form-control" id="password" aria-describedby="passwordHelp">
|
|
<div id="passwordHelp" class="form-text">The password needs to be different from the username</div>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
</form>
|
|
</div>
|
|
|
|
{{template "scripts" .}}
|
|
</body>
|
|
</html>
|