registeremail/www/index.html

56 lines
2.1 KiB
HTML
Raw Normal View History

2024-03-13 03:48:47 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register Email</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Register Email</h1>
<form action="./" method="post">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Recipient's username" aria-label="Recipient's username" aria-describedby="basic-addon2" name="usernname">
<span class="input-group-text" id="basic-addon2">@tesses.net</span>
</div>
<input class="form-control" type="text" name="fullname" placeholder="Your Name" aria-label="Your Name">
<br>
<input class="form-control" type="password" name="password" placeholder="Password" aria-label="Password">
<br>
<input class="form-control" type="password" name="confirm" placeholder="Confirm Password" aria-label="Confirm Password">
<br>
<hr>
<br>
<h1>Admin Area</h1>
<input class="form-control" type="text" name="admin_username" placeholder="Admin Username" aria-label="Admin Username">
<br>
<input class="form-control" type="password" name="admin_password" placeholder="Admin Password" aria-label="Admin Password">
<br>
<h3>Shell</h3>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" name="ssh" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Allow SSH
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault2" name="sudo">
<label class="form-check-label" for="flexCheckDefault2">
Allow Sudo
</label>
</div>
<input type="submit" value="Create Account" class="btn btn-primary">
</form>
<hr>
<a href="https://gitlab.tesses.net/tesses50/registeremail">Source Code</a>
</div>
<script src="./js/bootstrap.min.js"></script>
</body>
</html>