-
Notifications
You must be signed in to change notification settings - Fork 4
/
login.html
70 lines (65 loc) · 2.35 KB
/
login.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LOGIN PAGE</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="conatiner">
<div class="row justify-content-center">
<div class="card w-25">
<div class="card-header text-center"><h1>LOGIN PAGE</h1></div>
<div class="card-body text-center">
<form id="myForm" action="login.php" method="post" >
<div class="form-group">
<label for="Username"><b>Username</b></label>
<input
type="Username"
class="form-control"
name="Username"
id="Username"
/>
<div class="form-group">
<label for="Email"><b>Email</b></label>
<input
type="text"
class="form-control"
name="Email"
id="Email"
/>
</div>
<div class="form-group">
<label for="password"><b>password</b> </label>
<input
type="password"
class="form-control"
name="password"
id="password"
/>
</div>
<div>
<input type="submit" value="LOGIN" name="LOGIN" id="LOGIN">
<!-- <button type="button" id="login"> LOGIN</button> -->
</form>
</div>
<div class="card-footer text-center">
<div class="form-group">
<P>ALREADY HAVE AN ACCOUNT? <a href="/from_start/signup.html">signup</a> </P>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="login.js"></script>
</html>