-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathunique_username.html
64 lines (59 loc) · 1.3 KB
/
unique_username.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Certificate Verification</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.footerBottom {
width: 100%;
padding: 20px;
text-align: center;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
.certificate {
background-color: #f5f5f5;
padding: 2rem;
margin-bottom: 2rem;
}
.certificate h1 {
margin-top: 0;
}
.links {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
margin-top: 2rem;
}
.links a {
text-decoration: none;
margin-bottom: 1rem;
color: #007bff;
font-weight: bold;
}
#try {
margin-top: auto;
}
</style>
</head>
<body>
<div class="container">
<div class="certificate">
<h1># Failed...Username already exists .</h1>
</div>
<div class="links">
<a href="javascript:history.back()">Try Again</a>
</div>
</div>
</body>
</html>