forked from apple7702/CapstoneRemodel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·55 lines (50 loc) · 2.45 KB
/
index.php
File metadata and controls
executable file
·55 lines (50 loc) · 2.45 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
52
53
54
55
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>REMODEL</title> <!-- Change this title for each page -->
</head>
<body>
<nav class="navbar">
<div class="container">
<a class="navbar-brand" href="https://wexnermedical.osu.edu">
<img src="https://wexnermedical.osu.edu/-/media/images/wexnermedical/global/modules/global/header/osuwexmedctr.png?la=en&hash=E40538F4EC98B54A105B79EC8FA1BAB09709DDDC" height="40" alt="">
</a>
</div>
</nav>
<nav class="navbar navbar-expand-lg" style="background-color: #bb0000;">
<div class="container">
<a class="navbar-brand" href="/">REMODEL: REsident MilestOne-baseD Educational Learning</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="/">Home<span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</div>
</nav>
<br>
<div class="container">
<a class="btn btn-primary" href="/laravel/public">Sign In</a>
</div>
<hr>
<div id="footer-wrap">
<div id="footer">
<div class="container">
<div id="footer_left">
<p>© <?php echo date('Y');?> OSU Anesthesiology</p>
</div>
</div>
</div>
</div>
</body>
</html>