forked from nolt/acore-mini-reg-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.php
94 lines (83 loc) · 2.48 KB
/
success.php
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
<!DOCTYPE html>
<html>
<head>
<title>mini RegistrationPage | Sign Up</title>
<style>
body {
background: #0c0d0d url('img/background.png') no-repeat top center;
width: 100%;
}
header {
width: 100%;
height: 605px;
position: absolute;
margin: 0 auto;
background: url('img/') no-repeat top center;
top: 0;
z-index: -1;
}
fieldset {
width: 50%;
padding: 50px;
box-shadow: 0 0 9px white;
margin: 90px auto;
text-align:center;
background-color: rgba(230, 230, 230, 0.9);
font-family: Tahoma,Geneva, sans-serif;
}
fieldset input[type="text"],
fieldset input[type="email"],
fieldset input[type="password"] {
display:block;
margin-bottom: 15px;
line-height: 18px;
height: 30px;
width: 80%;
}
fieldset input[type="submit"] {
width: 80%;
height: 36px;
cursor: pointer;
}
.logo {
margin: 10px auto;
display: block;
}
pre {
display: inline;
background-color: white;
padding: 0px 9px;
}
.form {
float: left;
width: 45%;
}
.information {
float:right;
width: 52%;
}
li {
margin-bottom: 20px;
}
footer {
color: white;
text-align: center;
}
</style>
</head>
<body>
<header> </header>
<img class="logo" src="img/logo.png" />
<fieldset>
<h1 style="color: green;">Account successfully created!</h1>
<h3>Change now your realmlist.wtf to connect.</h3>
Navigate to your Game Client directory<br>
Search and open realmlist.wtf with your text editor<br>
Change the content of the file to <pre>set realmlist ***</pre><br><br>
<a href="./">Back to our website</a>
</fieldset>
<footer>
© 2020 Private Realm
</footer>
</body>
</html>