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
585 B
20 lines
585 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login - OriginDex</title>
|
|
<style>
|
|
/* Add your styling here */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<h1>Login to OriginDex</h1>
|
|
<form method="POST">
|
|
<input type="text" name="username" placeholder="Username" required>
|
|
<input type="password" name="password" placeholder="Password" required>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
<p>Don't have an account? <a href="{{ url_for('register') }}">Register</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|