21 lines
714 B
Plaintext
21 lines
714 B
Plaintext
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Login</title>
|
||
|
|
<link rel="stylesheet" href="styles.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<%- include('partials/nav') %>
|
||
|
|
<div class="content">
|
||
|
|
In most cases you don't need to create an account because this ticketing system works primarily with links sent through email. Gate volunteers are an exception.
|
||
|
|
<form id="editor" method="POST" action="/create">
|
||
|
|
Email:<input type="email" name="username"><br>
|
||
|
|
Password:<input type="password" name="password1"><br>
|
||
|
|
Repeat Password:<input type="password" name="password2"><br>
|
||
|
|
<button id="Submit" type="submit">Create Account</button>
|
||
|
|
<br>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|