-
Notifications
You must be signed in to change notification settings - Fork 0
/
singup.html
46 lines (46 loc) · 1.46 KB
/
singup.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/style1.css">
<script src="front_script/login.js" defer></script>
</head>
<body>
<main>
<div class="main_login">
<div class="chose">
<div><h1>CHOOSE</h1></div>
</div>
<div class="main_image">
<img src="image/proffe.png" id="img1" alt="">
<img src="image/student.png" id="img2" alt="">
<img src="image/admin.png" id="img3" alt="">
</div>
<button class="arrow">
← Back
</button>
<div class="login">
<h2>Login</h2>
<form action="" method="post" class="form">
<div class="user">
<input type="hidden" name="type" id="type">
<input type="text" name="username" required >
<label>Username</label>
</div>
<div class="user">
<input type="password" name="password" required>
<label>Password</label>
</div>
<p class="form__error hidden">username or password is incorrect</p>
<input class="submit" type="submit" name="submit" value="LOGIN">
</form>
</div>
<div class="main_def">
<img id="img" src="image/login4.png" alt="">
</div>
</div>
</main>
</body>
</html>