-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (37 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Select System</title>
<link rel="stylesheet" href="css/mainStyle.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body id="loginBody">
<div id="loginBox">
<div id="loginHead">
<div id="logoBox"><span id="heart" class="fa fa-heartbeat"></span>
<p id="logHead">HealthAPP</p>
</div>
<div id="inputs">
<!-- Secretary -->
<div id="IconBox">
<span id="secIcon" class="fa fa-pencil"></span>
</div>
<button type="submit" value="login" id="sec_btn" name="submit" onclick="window.location='http://localhost/ehealthproject/login.php';" >SECRETARY APP</button>
<!-- CLEAR -->
<div style="clear: both";></div>
<!-- Doctor -->
<div id="IconBox">
<span id="docIcon" class="fa fa-user-md"></span>
</div>
<button type="submit" value="login" id="doc_btn" name="submit" onclick="window.location='http://localhost/ehealthdoc/login.php';">DOCTOR APP</button>
<!-- CLEAR -->
<div style="clear: both";></div>
<div id="btns">
</div>
<!-- CLEAR -->
<div style="clear: both";></div>
</div>
</div>
</div>
</html>