-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest
More file actions
39 lines (34 loc) · 1.78 KB
/
test
File metadata and controls
39 lines (34 loc) · 1.78 KB
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
<html>
<head>
<title>Login-Asmt News</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<?php include('include/nav.php');?>
<div class="container">
<div class="row justify-content-md-center">
<div class="col-6">
<div class="card">
<div class="card-body">
<form method="post" action="db/login.php">
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1">Email </span>
<input type="email" name="email" class="form-control" placeholder="Email" aria-label="email" aria-describedby="basic-addon1">
</div>
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1">Password </span>
<input type="password" name="password" class="form-control" aria-label="Username" aria-describedby="basic-addon1">
</div>
<hr/>
Do not have account? <a href="signup.php">Signup</a>
<input type="submit" value="Login" name="loginsubmit" style="float:right;" class="btn btn-success">
</form>
</div>
<?php include('include/message.php'); ?>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>