You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
594 B

<!DOCTYPE html>
<html>
<head>
<title>Register - OriginDex</title>
<style>
/* Add your styling here */
</style>
</head>
<body>
<div class="register-container">
<h1>Register for OriginDex</h1>
<form method="POST">
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">Register</button>
</form>
<p>Already have an account? <a href="{{ url_for('login') }}">Login</a></p>
</div>
</body>
</html>