-
Notifications
You must be signed in to change notification settings - Fork 0
/
wcm-guest.html
66 lines (57 loc) · 2.58 KB
/
wcm-guest.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
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='UTF-8'>
<meta name="description" content="Weill Cornell Medicine Guest Network">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/wcmc-its/[email protected]/dist/wcm.css">
<title>WCM Guest</title>
<meta property="og:title" content="WCM Guest" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://weill.cornell.edu/" />
<meta property="og:image" content="https://wcmc-its.github.io/wcm-styles/images/WCM_MB_LOGO_HZSS2L_CLR_RGB.png" />
</head>
<body data-offset="55" data-target="#navbar-collapse-links" data-spy="scroll">
<header>
<nav class="bg-primary fixed-top navbar navbar-dark navbar-expand-xl navbar-wcm ">
<div class="container">
<a class="navbar-brand" href="http://weill.cornell.edu/">
<img title="WCM Logo" src="https://wcmc-its.github.io/wcm-styles/images/wcm-logo-1line-white.png" alt="Wcm logo 1line white">
</a>
</nav>
</header>
<div class="container mt-4" id="main">
<div class="row">
<div class="col">
<h3>WCM Guest Network</h3>
</div>
</div>
<section id="disclaimer">
<div class="row card">
<div class="card-header">Disclaimer</div>
<div class="card-body">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>
<div class="card-footer">
<button type="button" class="btn btn-outline-primary mx-1">Accept</button>
</div>
</div>
</section>
</div><!-- main container -->
<footer class="mt-4">
<nav class="bg-dark navbar-dark " role="navigation">
<div class="container">
<div class="navbar-text">
<small>
© <span id="year"></span>
Weill Cornell Medicine. Reproduction, electronic or otherwise, without the permission of
Weill Cornell Medicine is strictly forbidden. All Rights Reserved.
</small>
</div>
</nav>
</footer>
<script>
var date = new Date()
document.getElementById('year').innerHTML = date.getFullYear()
</script>
</body>
</html>