-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
32 lines (31 loc) · 996 Bytes
/
error.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Applesauce | Error</title>
<link rel="stylesheet" href="bootstrap/bootstrap.min.css" />
</head>
<body>
<div class="modal d-block position-static" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Error</h5>
</div>
<div class="modal-body">
<p>
An user agent was not found. You must set one in order to conform
to NationStates site rules.
</p>
<button type="button" class="btn btn-primary" id="open-settings">
Open Settings
</button>
</div>
</div>
</div>
</div>
<script src="bootstrap/bootstrap.min.js"></script>
<!-- <script src="error.js"></script> -->
</body>
</html>