-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-notification.html
109 lines (85 loc) · 2.83 KB
/
single-notification.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
106
107
108
109
<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">
<h4 class="notificationTitle">Basic Notification Schedule</h4>
<section class="scheduleDetail content-box">
<p>This is a basic notification schedule. Edit the schedule to customize it to your notification needs.<p>
<div class="attachedServers">
<p><strong>Servers and Groups:</strong></p>
<ul>
<li>Server 1</li>
<li>Server 2</li>
<li>Server 3</li>
</ul>
</div>
</section>
<section class="timeline">
<!-- Visualization of schedule timeline. What level of detail can we pull in here? -->
<div class="outageConfirmed icon icon-warning">
Outage Confirmed
</div>
<div class="event-separator"><span>15 minutes</span></div>
<div class="notificationEvent icon icon-cancel-circle">
Email Mike Pare <span class="email">([email protected])</span>
</div>
<div class="resolved-separator"></div>
<div class="outageResolved icon icon-checkmark-circle">
Outage Resolved - send all clear alert
</div>
</section>
<section class="notificationOptions">
<a href="#" class="button button-orange" style="display:block; width:100%">Add Event</a>
<!--Button to Add User -->
<!--Button to Create Schedule -->
<!--Note: These will not be functional in v1.0 -->
</section>
</div>
</main>
<footer>
<nav class="row footer-wrap">
<div class="footer-nav">
<div class="alerts">
<a href=" "><i class="icon icon-warning"></i></a>
</div>
<div class="servers">
<a href=" "><i class="icon icon-folder"></i></a>
</div>
<div class="notifications">
<a href=" "><i class="icon icon-clock"></i></a>
</div>
</div>
</nav>
</footer>
</div><!-- End App Wrapper -->
</div><!-- End Proto Wrap -->
</body>
</html>