-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (31 loc) · 800 Bytes
/
Copy pathindex.php
File metadata and controls
37 lines (31 loc) · 800 Bytes
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
<?php
include_once("./accountcreation.php");
?><!DOCTYPE html>
<html>
<head>
<title>Welcome to Purity Gaming!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome at the Homepage of Purity Gaming!</h1>
<p>Our Homepage is under Construction.</p>
<form action="./index.php" method="post">
Accountname:<br>
<input type="text" name="username" ><br>
Accountpassword:<br>
<input type="password" name="password" ><br>
BetaKey: <br>
<input type="text" name="betakey"><br>
</p>
<button type="submit">Create Account!</button>
</form>
<p><em>Thank you for your interest on playing at our Server.</em></p>
<p><em>Realmlist: purity-gaming.com</em></p>
</body>
</html>