-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
96 lines (81 loc) · 2.91 KB
/
admin.html
File metadata and controls
96 lines (81 loc) · 2.91 KB
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
<!DOCTYPE html>
<html lang= "en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
.header_name {
padding: 10px;
text-align: center;
background: #8f8e96;
color: white;
}
.navbar{
overflow: hidden;
background-color: #333;
position: sticky;
position: -webkit-sticky;
top: 0;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.navbar a.active {
background-color: #666;
color: white;
}
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
.navbar a.right {
float: right;
}
.image1{
float: right;
padding: 10px;
}
.info{
float: left;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
</style>
</head>
<body>
<div class = "header_name">
<i style = "font-size: 130%;"> Admin </i>
</div>
<div class = "navbar">
<a href="home"> Return Home </a>
<a href="admin"> Admin Home </a>
<a href="displayemails"> Display Emails </a>
<a href="removeform"> Remove Email</a>
<a href="sendemail"> Send Notification</a>
<a href="logout" class = "right"> Logout </a>
</div>
<div class = "image1">
<img src = "https://user-images.githubusercontent.com/59454383/95550889-871a0e00-09be-11eb-8e77-6b9c2d8dd2f8.jpg" alt = "The Hexediceml Logo">
</div>
<div class = "info">
<h1> Welcome: </h1>
<p> <br> <br> <br>
Welcome to the admin page. <br>This page has a few admin controls. <br>This page is only
ment for members/people <br>invited by the Hexadecimels. <br>If you need any help email
dzgorbatov@gmail.com. <br>For security purposes <br> display emails will only display
emails if <br> you have a password, reach out by email <br>dzgorbatov@gmail.com for help or slack for accesse.
<br>Important, do not <br>try to remove emails without<br> authorazation(post in slack for authorazation).
<br>If you try to remove without authorazation it will ask <br>the head-admins first. <br>
</p>
</div>
</body>
</html>