This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (56 loc) · 3 KB
/
index.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Restart Mailware</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link rel="stylesheet" href="css/jumbotron-narrow.css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active"><a >Welcome to the Dashboard</a></li>
</ul>
</nav>
<h3 class="text-muted">Restart Mailware 2014</h3>
</div>
<div class="row marketing">
<div class="col-lg-6">
<h4>Why am I seeing this?</h4>
<p>This is a purpose built web interface to let users reboot the Mailware 2014 Database Server when it locks up.</p>
</div>
<div class="col-lg-6">
<h4>What happens if I press the button?</h4>
<p>The Mailware 2014 Database Server will reboot immediately without warning on all users.</p>
</div>
</div>
<div class="jumbotron">
<h1>WARNING</h1>
<p class="lead">Pressing the button below to restart the Mailware 2014 Server CAN RESULT IN DATA LOSS AND WILL DISCONNECT ALL ACTIVE USERS OF MAILWARE.</p>
<h3>Proceed at your own risk.</h3>
<p><a class="btn btn-lg btn-danger" href="reboot_mw.py" role="button">Restart Mailware Now</a></p>
</div>
<footer class="footer">
<p>THIS IS OPEN SOURCE SOFTWARE THAT YOU CAN USE HOWEVER YOU LIKE.</p>
</footer>
</div> <!-- /container -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>