latest
This commit is contained in:
76
templates/signup.html
Normal file
76
templates/signup.html
Normal file
@@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{{ template "htmlheader.html" .HTMLHeader }}
|
||||
<style>
|
||||
body {
|
||||
padding-top: 3.5rem;
|
||||
}
|
||||
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
{{ template "navbar.html" .Navbar}}
|
||||
|
||||
<main role="main">
|
||||
<div class="signup-form">
|
||||
<form action="/signup" method="post">
|
||||
<h2 class="text-center">Create New Account</h2>
|
||||
|
||||
<div class="form-group">
|
||||
<span>Email:</span>
|
||||
<input type="text" class="form-control" name="email"
|
||||
placeholder="user@domain.com" required="required">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<span>Desired Username:</span>
|
||||
<input type="text" class="form-control" name="desiredUsername" placeholder="Username" required="required">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<p>Please use a unique password that you don't use anywhere
|
||||
else. Minimum 12 characters.</p>
|
||||
<span>New Password:</span>
|
||||
<input type="password" class="form-control"
|
||||
name="desiredPassword1" placeholder="Password" required="required">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<span>New Password (again):</span>
|
||||
<input type="password" class="form-control"
|
||||
name="desiredPassword2" placeholder="Password
|
||||
(again)" required="required">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-primary btn-block">Create
|
||||
New Account</button>
|
||||
</div>
|
||||
<!-- <div class="clearfix">
|
||||
<label class="float-left form-check-label"><input type="checkbox"> Remember me</label>
|
||||
<a href="#" class="float-right">Forgot Password?</a>
|
||||
</div>
|
||||
-->
|
||||
</form>
|
||||
<p class="text-center"><a href="#">Create an Account</a></p>
|
||||
</div>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
{{ template "pagefooter.html" .PageFooter }}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user