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.
31 lines
1.2 KiB
31 lines
1.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Login - ServiceTrade Tools</title>
|
|
<script src="https://unpkg.com/htmx.org@1.9.6"></script>
|
|
<link rel="stylesheet" href="/static/css/styles.css" />
|
|
</head>
|
|
<body class="bg-gray flex-center">
|
|
<div class="login-container">
|
|
<h1 class="login-title">ServiceTrade Tools</h1>
|
|
<h2 class="login-subtitle">Walmart Edition</h2>
|
|
<form hx-post="/login" hx-target="#login-message">
|
|
<div class="input-group">
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" name="email" required class="input-field" />
|
|
</div>
|
|
<div class="input-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" required class="input-field" />
|
|
</div>
|
|
<div class="form-footer">
|
|
<button type="submit" class="btn-primary">Sign In</button>
|
|
<a href="#" class="forgot-password">Forgot Password?</a>
|
|
</div>
|
|
</form>
|
|
<div id="login-message" class="login-message"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|