tickets/views/login.ejs
2024-05-05 23:43:17 -06:00

54 lines
1.5 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootswatch Darkly theme -->
<link href="https://stackpath.bootstrapcdn.com/bootswatch/latest/darkly/bootstrap.min.css" rel="stylesheet">
<title>Login</title>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
/* 100% of the viewport height */
margin: 0;
}
.centered-div {
/* Additional styling if needed */
max-width: 1000px;
}
</style>
</head>
<body>
<div class="centered-div">
<div class="card">
<div class="card-body">
<h5 class="card-title">Login</h5>
<form action="/login" method="POST">
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" id="username" name="username"
placeholder="Enter your username">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" name="password"
placeholder="Enter your password">
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
</div>
</div>
</div>
</body>
</html>