forked from Priscillak418/view-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (72 loc) · 3.2 KB
/
index.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
71
72
73
74
75
76
<!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">
<link href="styles/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link rel="stylesheet" href="styles/style.css">
<title>Vue JS</title>
</head>
<body>
<div id="app">
<div class="container">
<div class="row">
<!-- <div class="col"></div> -->
<div class="all-width center-txt"><h1>Student Registration System</h1></div >
<hr/>
<div class="col-5">
<div>
<h4>
<small class="text-muted">Preview: </small>
<small >John Doe</small>
</h4>
</div>
<div>
<input class="form-control mgn-btm-10" type="text" placeholder="First Name" aria-label="first name">
<input class="form-control mgn-btm-10" type="text" placeholder="Last Name" aria-label="last name">
<input class="form-control mgn-btm-10" type="email" placeholder="Email" aria-label="email">
<button type="button" class="btn btn-primary"> Register </button>
</div>
</div>
<div class="col">
<div>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First Name</th>
<th scope="col">Last Name</th>
<th scope="col">Email</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Ssenengo</td>
<td>Jackson</td>
<td>[email protected]</td>
</tr>
<tr>
<th scope="row">2</th>
<td>John</td>
<td>Doe</td>
<td>[email protected]</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jane</td>
<td>Doe</td>
<td>[email protected]</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script src="scripts/bootstrap.min.js" crossorigin="anonymous"></script>
<script src="scripts/vue.js"></script>
<script src="script.js"></script>
</body>
</html>