-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRealMainMenu.html
More file actions
27 lines (27 loc) · 893 Bytes
/
RealMainMenu.html
File metadata and controls
27 lines (27 loc) · 893 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Main Menu</title>
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Main Menu</h2>
<form action="" method="post">
<div class="form-group">
<ul class="list-group ml-4" style="list-style-type:circle;">
<li><a href="NewPatientForm.php">Add New Patient</a></li>
<li><a href="#">Search Patient Info</a></li>
<li><a href="register.php">Add New User</a></li>
</ul>
</div>
</form>
</div>
</div>
</div>
</body>
</html>