speakmore-2.0/templates/register.html

39 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register</title>
{% include 'head.html' %}
</head>
<body class="login-body">
<div class="login-div">
<form class="login-form" id="register-form" method="POST">
<img class="login-img" src="{{ url_for('static', filename='images/ms-style-logo.svg') }}" alt="Image">
<h2 class="login-h2">Create Account</h2>
<div class="login-input-div-first">
<!-- <label for="username">Username</label> -->
<input class="login-input" type="text" class="form-control" id="username" name="username" placeholder="Username" required autocomplete="off">
</div>
<div class="login-input-div-rest">
<!-- <label for="password">Password</label> -->
<input class="login-input" type="password" class="form-control" id="password" name="password" placeholder="Password" required autocomplete="off">
</div>
<div class="login-input-div-first !flex-row">
<a class="no-account no-account-button" href="{{ url_for('login') }}"> Go Back</a>
</div>
<div class="login-input-div-first items-end">
<button class="ms-button-signin" type="submit" class="btn btn-primary">Next</button>
</div>
<!-- <button class="ms-button-signin" type="submit" class="btn btn-primary">Next</button> -->
</form>
<!-- <div class="flex flex-col w-full items-end">
<button class="ms-button-signin" type="submit" class="btn btn-primary">Next</button>
</div> -->
</div>
</body>
</html>