-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (46 loc) · 2.18 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/uistyles.css">
<title>Student database management system</title>
</head>
<body>
<div class="container" id="container">
<a href="./index.html"><button class="ghost" id="homehid">Home</button></a>
<div class="right form-container sign-up-container">
</div>
<div class="left form-container sign-in-container">
<iframe name="dest3"></iframe>
<div class="form" action="#" target="dest3">
<h1>View Student</h1>
<input type="number" name="reg_id" id="Reg_id" placeholder="Registration number" />
<span>OR</span>
<input type="text" name="name" id="Name" placeholder="Name" />
<button id="Search">Search</button>
<button id="viewAll">View All</button>
<button class="hidden" id="Addid">Add</button>
</div>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-left">
<h1>Looking for someone?</h1>
<p>To view existing students, search here, or view all.</p>
<button class="ghost" id="GoBack">Go back</button>
</div>
<div class="overlay-panel overlay-right">
<h1 id ="righttext">Hola!</h1>
<p>Enter student details, and add him/her to the database</p>
<button class="ghost" id="Add">Add</button>
<a href="./index.html"><button class="ghost" id="home">Home</button></a>
</div>
</div>
</div>
</div>
<script src="./js/main.js"></script>
<script src="./js/search.js"></script>
<script src="./js/viewall.js"></script>
<script src="./js/add.js"></script>
</body>
</html>