blob: 61a0cc08cdf1006b633f96cc18852729cf6ab805 (
plain) (
blame)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Sin's SS Logger | Signup</title>
<link rel="shortcut icon" href="https://i.imgur.com/69mCrs0.jpg" type="image/jpg">
<!-- CSS -->
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/now-ui-kit.css">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<style>
html,
body {
background-color: #202124;
user-select: none;
}
.container {
z-index: 999;
}
#white-txt {
color: white !important;
}
.highlightable {
user-select: text;
}
footer {
position: fixed;
left: 0;
bottom: 3px;
width: 100%;
color: white;
text-align: center;
}
#pink-link {
color: pink;
}
#pink-link:hover {
color: rgb(214, 161, 170);
}
</style>
<!-- External Libraries -->
<!-- Invisible Scripts -->
<script src="https://code.jquery.com/jquery-3.5.0.min.js"
integrity="sha256-xNzN2a4ltkB44Mc/Jz3pT4iU1cmeR0FkXs4pru/JxaQ=" crossorigin="anonymous"></script>
<script src="/js/now-ui-kit.js"></script>
<script src="/js/main.js"></script>
<!-- External Libraries -->
<!-- Invisible Scripts -->
</head>
<body>
<!-- Visable Scripts -->
<nav class="navbar navbar-expand-lg bg-transparent hideme" id="navbar-remove">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="#" class="nav-link disabled" style="opacity: 1;">Database Status: <span
style="color: #99CC33;">Online</span></a>
</li>
<div class="divider-vertical"></div>
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a href="/marketplace" class="nav-link">Marketplace Beta</a>
</li>
<!--<li class="nav-item">
<a class="nav-link" href="/discord/bots/uwufier/about/">About</a>
</li>-->
<li class="nav-item active">
<a href="#" class="nav-link">Profile <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item disabled">
<a href="#" class="nav-link disabled">API</a>
</li>
<div class="divider-vertical"></div>
<li class="nav-item">
<a href="https://kyzer.co" class="nav-link">More stuff from Sin</a>
</li>
</ul>
<!-- <button class="btn btn-outline-secondary my-2 my-sm-0 btn-round btn-sm">LOGIN</button> -->
</div>
</nav>
<div class="container my-5 hideme">
<div class="row">
<div class="col-sm"></div>
<div class="col-sm">
<h4 class="pt-4" id="white-txt">Signup</h4>
<form action="/signup" method="POST" class="my-4">
<div class="form-group">
<label for="emailSignup" class="sr-only">Email</label>
<input type="email" name="emailSignup" id="emailSignup" class="form-control mr-2"
placeholder="Email" pattern=".{6,}">
<small id="loginUserhelp" class="form-text text-muted">Don't worry, we never share your email with anyone. Fake users will be pruned and deleted.</small>
</div>
<div class="form-group">
<label for="userSignup" class="sr-only">Username</label>
<input type="text" name="userSignup" id="userSignup" class="form-control mr-2"
placeholder="Username" pattern=".{3,}" required>
<small id="loginUserhelp" class="form-text text-muted">Must be atleast 3 characters.</small>
</div>
<div class="form-group">
<label for="passSignup" class="sr-only">Password</label>
<input type="password" name="passSignup" id="passSignup" class="form-control mr-2 mb-2"
placeholder="Password" pattern=".{3,}" required>
<input type="password" name="passSignupCheck" id="passSignupCheck" class="form-control mr-2"
placeholder="Confirm Password" pattern=".{3,}" required>
<script>
var password = document.getElementById("passSignup"),
confirm_password = document.getElementById("passSignupCheck");
function validatePassword() {
if (password.value != confirm_password.value) {
confirm_password.setCustomValidity("Passwords do not match!");
} else {
confirm_password.setCustomValidity('');
}
}
password.onchange = validatePassword;
confirm_password.onkeyup = validatePassword;
</script>
<small id="loginUserhelp" class="form-text text-muted">Pick something secure and easy to remember! Must be atleast 3 characters.</small>
<div>
<input type="checkbox" class="form-check-input" id="terms-check" required style="margin-left: 0 !important; margin-top: .45rem;">
<label class="form-check-label" for="terms-check" id="white-txt">I agree to the <a href="/terms">terms and services</a>.<label>
</div>
<div class="pt-3">
<button type="submit" class="btn btn-success">Signup</button>
<a href="/login">
<button type="button" class="btn btn-primary" style="float: right;">Back?
Login</button>
</a>
</div>
</div>
</form>
</div>
<div class="col-sm"></div>
</div>
</div>
<footer class="hideme">
<link rel="stylesheet" type="text/css"
href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" />
Made with <i class="icon ion-heart"></i> by <a href="https://kyzer.co/">Sin</a>. |
<span class="highlightable"><%= quote.text %> -<%= quote.author.name %></span>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous">
</script>
<script src="https://code.jquery.com/jquery-3.5.0.min.js"
integrity="sha256-xNzN2a4ltkB44Mc/Jz3pT4iU1cmeR0FkXs4pru/JxaQ=" crossorigin="anonymous"></script>
</body>
</html>
|