OTPSystem/pages/index.html
2025-01-19 18:33:08 -05:00

42 lines
784 B
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<header></header>
<main>
<div class="content">
<h1>UWP Community Verification Process</h1>
<p style="display: inline;">Enter University Email:</p>
<form method="post">
<label for="email">Email:</label>
<input type="text" name="email" id="email">
<button type="submit">Send Code</button>
</form>
</div>
</main>
<footer></footer>
</body>
<style>
.content {
position: relative;
text-align: center;
top: 30vh;
font-size: 30px;
}
.content h1 {
color: orange;
}
input {
padding: 5px;
width: 300px;
}
</style>
</html>