-
Notifications
You must be signed in to change notification settings - Fork 19
/
framework.html
25 lines (24 loc) · 921 Bytes
/
framework.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<title>Login Page - Framework</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-slate-300 flex justify-center items-center m-0 p-0 h-screen " >
<div class="shadow-xl rounded-lg text-center bg-slate-100 p-5" >
<h1 class="text-3xl font-bold underline">Login</h1>
<form>
<div class="m-4">
<label for="username">Username:</label>
<input type="text" id="username" placeholder="Enter your username" />
</div>
<div class="m-4">
<label for="password">Password:</label>
<input type="password" id="password" placeholder="Enter your password" />
</div>
<button type="submit" class="border-4 border-blue-600 p-2 rounded-full hover:bg-green-800">Log In</button>
</form>
</div>
</body>
</html>