mirror of
https://github.com/Bandit42/auth-site.git
synced 2026-01-16 23:04:23 -05:00
* Add files via upload
v2.02 UPDATE: 10/30/2019
1.) Added folder "swgsourceclient" for VM owner to add his configured client in zip format to allow others to download the client.
2.) Modified "addnewuser.php" file to include a download link and file location for client download in compressed file format
Bandit
* typo
* closing tag
* HTML fixes
-Put the download link within the document body.
-Remove the closing br tag, which isn't a thing. It's a self closing tag.
84 lines
2.3 KiB
PHP
84 lines
2.3 KiB
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Create a New Account</title>
|
|
<meta name = "viewport" content = "width = device-width">
|
|
<meta name = "viewport" content = "initial-scale = 1.0">
|
|
<script type="text/javascript" language="JavaScript">
|
|
<!--
|
|
|
|
function BothFieldsIdenticalCaseSensitive() {
|
|
var one = document.NewUser.realpassword.value;
|
|
var another = document.NewUser.confirmpassword.value;
|
|
if(one == another) { return true; }
|
|
alert("Password fields must be the same.");
|
|
return false;
|
|
}
|
|
//-->
|
|
</script>
|
|
<style>
|
|
body {
|
|
background-image: url("/images/darth_vader-lightsaber-star_wars.jpg");
|
|
background-color: black;
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
a:link {
|
|
color: green;
|
|
background-color: transparent;
|
|
text-decoration: none;
|
|
}
|
|
a:visited {
|
|
color: orange;
|
|
background-color: transparent;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
color: red;
|
|
background-color: transparent;
|
|
text-decoration: underline;
|
|
}
|
|
a:active {
|
|
color: yellow;
|
|
background-color: transparent;
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<body style="font-family: arial; font-style: gill-sans">
|
|
<p><center><b><a href="/index.php">Home</a></b></p>
|
|
<table>
|
|
<form name="NewUser" action="newuserpost.php" method="post" border="0">
|
|
<p><b><u><center><Font Color="white">REGISTER AN ACCOUNT</Font></p></center></b></u>
|
|
<tr>
|
|
<td><Font Color="#FFFFFF"><b>Account Name</b></Font></td>
|
|
<td><input type="text" name="useraccountname"/></td>
|
|
</tr><tr>
|
|
<td><Font Color="#FFFFFF"><b>Password</b></Font></td>
|
|
<td><input type="password" name="realpassword"/></td>
|
|
</tr><tr>
|
|
<td><Font Color="#FFFFFF"><b>Confirm Password</b></Font></td>
|
|
<td><input type="password" name="confirmpassword"/></td>
|
|
</tr><tr>
|
|
<td><Font Color="#FFFFFF"><b>Access Level</b></Font></td>
|
|
<td><select name="accesslevel">
|
|
<option value="standard">Standard</option>
|
|
</select></td>
|
|
</tr>
|
|
<tr><td></td><td>
|
|
<input type="hidden" name="action" value="create"/>
|
|
<input type="submit" onclick="return BothFieldsIdenticalCaseSensitive();" value="Submit"/>
|
|
</td></tr>
|
|
</center>
|
|
</form>
|
|
</table>
|
|
<br />
|
|
<center><a href="/swgsourceclient/swgsourceclientv1.2.1.rar" download><font size="+2"><b><u>Download Client</u></b></font></a></center>
|
|
</body>
|
|
</html>
|