-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (31 loc) · 985 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="menu">
<div align="center" id = "img-div">
<img src="css/img/P-logo.png">
</div>
<button id="mid-log" onclick="midwives_form();">
<img src="css/img/shopping-list.png" class="img-align">
Midwives
</button>
<button id="rec-log" onclick="reception_form();">
<img src="css/img/invoice.png" class="img-align">
Reception
</button>
<button id="adm-log" onclick="adminstration_form();">
<img src="css/img/store.png" class="img-align">
Adminstration
</button>
<div id="forms">
</div>
</div>
<script type="text/javascript" src="script/jquery.js"></script>
<script type="text/javascript" src="script/login.js"></script>
<script type="text/javascript" src="script/jredirect.js"></script>
</body>
</html>