-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotifications.html
105 lines (78 loc) · 2.33 KB
/
notifications.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Servers | Panopta </title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/icons.css">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<div class="proto-wrap">
<div class="app-wrapper">
<header>
<nav>
<div class="header-nav">
<!-- Page Specific back arrow on internal, blank on home -->
<div class="backArrow float-l">
<a href="#" rel="prev"><i class="icon icon-arrow-left"> </i></a>
</div>
<!-- End Back Arrow -->
<div class="logo">
<img src="assets/images/logo.svg" alt="Panopta Logo">
</div>
<div class="settings float-r">
<a href="#"><i class="icon icon-cog"></i></a>
</div>
</div>
</nav>
</header>
<main>
<div class="container">
<h3 class="page-title" >Notification Schedules</h3>
<section class="schedule-list">
<div class="schedule content-box">
<p class="title">Basic Notification Schedule</p>
</div>
<div class="schedule content-box">
<p class="title">Another Notification Schedule</p>
</div>
<div class="schedule content-box">
<p class="title">Another Notification Schedule</p>
</div>
</section>
<section class="notificationOptions">
<a href="#" class="button button-orange one-half">Add Schedule</a>
<a href="#" class="button button-grey one-half">Add User</a>
<!--Button to Add User -->
<!--Button to Create Schedule -->
<!--Note: These will not be functional in v1.0 -->
</section>
</div>
</main>
<footer>
<nav class="footer-wrap">
<div class="footer-nav">
<a href="#">
<div class="alerts one-third active">
<i class="icon icon-warning"></i>
</div>
</a>
<a href="#">
<div class="servers one-third">
<i class="icon icon-folder"></i>
</div>
</a>
<a href="#">
<div class="notifications one-third">
<i class="icon icon-clock"></i>
</div>
</a>
</div>
</nav>
</footer>
</div><!-- End App Wrapper -->
</div><!-- End Proto Wrap -->
</body>
</html>