-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreg.php
47 lines (44 loc) · 1.46 KB
/
reg.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>DOS - Digitizing DIT</title>
<!-- CSS -->
<style>
.student{}
.teacher{}
.security{}
</style>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body style="background:rgb(7,171,140);">
<div class="container" style="background:rgba(0,0,0,0.3);margin-top:5vh;">
<div class="row">
<div class="col s1"></div>
<div class="col s10 center white-text">
<h1>Register</h1>
</div>
<div class="col s1"></div>
</div>
<div class="row">
<div class="col s12 m4">
<a href="student/reg.php"><img src="images/stu.jpg" class="col s12" /></a>
</div>
<div class="col s12 m4">
<a href="faculty/reg.php"><img src="images/fac.jpg" class="col s12" /></a>
</div>
<div class="col s12 m4">
<a href="gaurd/reg.php"><img src="images/sec.jpg" class="col s12" /></a>
</div>
</div>
<div class="section"></div>
</div>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>