-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
51 lines (50 loc) · 1.04 KB
/
signup.php
File metadata and controls
51 lines (50 loc) · 1.04 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
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<title>Medix</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<style>
td:hover
{
background:#607d8b;
}
#con:hover
{
background:white;
}
span:hover
{
color:#01579b;
}
span
{
color:#81d4fa;
}
</style>
</head>
<?php include 'nav.php';?>
<body class="parallax">
<div style="padding:120px;"/>
<div class="container">
<table style="height:50%">
<tr>
<td class="card-panel hoverable" style="height:30%">
<a href="personalsignup.php">
<font size="5"><center><span>Personal</span></center></font>
</a>
</td>
<td class="card-panel hoverable" style="height:33%">
<a href="hospitalsignup.php">
<font size="5"><center><span>Hospital</span></center></font>
</a>
</td>
<td class="card-panel hoverable" style="height:33%">
<a href="doctorsignup.php">
<font size="5"><center><span>Doctor</span></center></font>
</a>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>