-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
115 lines (109 loc) · 2.54 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
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
110
111
112
113
114
115
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#3c6382">
<meta name="robots" content="noindex, nofollow">
<title>Membership Notification</title>
<meta name="description" content="Membership Notification Alerts.">
<style>
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 18px;
text-align: center;
line-height: 1.5;
color: #333;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
a {
cursor: pointer;
color: #2f6690;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.container {
margin: 100px auto;
max-width: 450px;
padding: 0 15px;
}
.button {
display: inline-block;
padding: 15px 25px;
background: #2f6690;
color: #fff;
text-decoration: none;
text-align: center;
vertical-align: middle;
border-radius: 4px;
cursor: pointer;
white-space: nowrap;
font-weight: bold;
border: 0;
}
.button:hover {
text-decoration: none;
}
.button:active,
.button.active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.form {
max-width: 300px;
margin: 0 auto;
}
.form .button {
display: block;
width: 100%;
}
.form-control {
display: block;
width: 100%;
text-align: center;
padding: 15px 20px;
background-color: #fff;
border: 2px solid #eee;
border-radius: 4px;
transition: border-color .15s;
}
.form-control:focus,
.form-control.focus {
border-color: #2f6690;
outline: none;
}
.errors {
color: #d83e3e;
}
.errors ul {
list-style-type: none;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div class="container">
<p>
<strong>Membershipt Notification.</strong>
</p>
<p>
Get New Members Registation
</p>
</div>
</body>
</html>