first commit

This commit is contained in:
tmarschutz
2025-10-03 11:45:17 +02:00
parent 09821c1c43
commit 5da3f1e071
10571 changed files with 1386578 additions and 1 deletions
@@ -0,0 +1,9 @@
<html>
<head>
<script type="text/javascript">
document.write("token :" + Android.getUserToken());
</script>
</head>
</html>
@@ -0,0 +1,23 @@
<html>
<head>
<style>
.center {
margin: auto;
width: 50%;
padding: 10px;
}
</style>
</head>
<body>
<div class="center">
<img src="https://hafiz.ng/wp-content/uploads/2022/03/pwn.png" />
</div>
</body>
</html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

@@ -0,0 +1,79 @@
<html>
<head>
<style>
* {box-sizing: border-box}
/* Add padding to containers */
.container {
padding: 16px;
}
/* Full-width input fields */
input[type=text], input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: 1px solid black;
border-radius: 50px;
background: #f1f1f1;
}
input[type=text]:focus, input[type=password]:focus {
background-color: #ddd;
outline: none;
}
/* Overwrite default styles of hr */
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
/* Set a style for the submit/register button */
.registerbtn {
background-color: #4CAF50;
color: white;
border: 1.5px solid black;
padding: 16px 20px;
margin: 8px 0;
border-radius: 50px;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
.registerbtn:hover {
opacity:1;
}
/* Add a blue text color to links */
a {
color: dodgerblue;
}
</style>
</head>
<form action="register">
<div class="container">
<h1>Register</h1>
<p>Please fill in this form to create an account.</p>
<em>0x71342e2</em>
<hr>
<label for="email"><b>Username</b></label>
<input type="text" placeholder="Enter username" name="email" id="email" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter password" name="psw" id="psw" required>
<label for="psw-repeat"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat password" name="psw-repeat" id="psw-repeat" required>
<hr>
<button type="submit" class="registerbtn">Register</button>
</div>
</form>
</html>