generated from FotihYusupov/scss-tempate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.html
26 lines (26 loc) · 1.18 KB
/
auth.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
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<section class="login">
<div class="login__wrapper container">
<form class="login__form">
<label class="login__input-label" for="userName">User Name</label>
<input class="login__input userName" id="userName" type="text" name="user_name" placeholder="User Name" required>
<label class="login__input-label" for="userPassword">User Password</label>
<input class="login__input userPassword" id="userPassword" type="text" name="user_password" placeholder="User Password" required>
<button class="login__btn">Submit</button>
</form>
</div>
</section>
<script src="./js/auth.js"></script>
</body>
</html>