-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLog in Html file
58 lines (57 loc) · 1.75 KB
/
Log in Html file
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
<!DOCTYPE html>
<html>
<head>
<title>LOG IN PAGE</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
</head>
<body>
<div class="container">
<div class="row col-md-6 col-md-offset-3">
<div class="panel panel-primary">
<div class="panel-heading text-center">
<h1>Log In Form</h1>
</div>
<div class="panel-body">
<form action="connect.php" method="post">
<div class="form-group">
<label for="StudentID">Student ID</label>
<input
type="text"
class="form-control"
id="StudentID"
name="StudentID"
/>
</div>
<div class="form-group">
<label for="Password">Password</label>
<input
type="text"
class="form-control"
id="Password"
name="Password"
/>
</div>
<input type="submit" class="btn btn-primary" />
</form>
</div>
<div class="panel-footer text-right">
<small>© T</small>
</div>
</div>
</div>
</div>
<div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<img src="..." class="rounded mr-2" alt="...">
<strong class="mr-auto">Bootstrap</strong>
<small>11 mins ago</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="toast-body">
Hello, world! This is a toast message.
</div>
</div>
</body>
</html>