This commit is contained in:
Evan Niederwerfer 2025-01-19 18:33:08 -05:00
parent 78410fe209
commit 3099683124
3 changed files with 74 additions and 0 deletions

41
pages/index.html Normal file
View File

@ -0,0 +1,41 @@
<!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>

21
pages/otp.html Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<header></header>
<main>
<p>Verify your OTP here</p>
<form method="post">
<label for="emailVerif">Email:</label>
<input type="text" name="verifEmail" id="email">
<label for="email">OTP Code:</label>
<input type="number" name="verifOtp" id="otp">
<button type="submit">Submit</button>
</form>
</main>
<footer></footer>
</body>
</html>

12
pages/verify.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<header></header>
<main></main>
<footer></footer>
</body>
</html>