combining code
This commit is contained in:
adanrsantos 2024-10-24 23:51:39 -05:00
commit dfc0702228
5 changed files with 101 additions and 9 deletions

View file

@ -3,3 +3,13 @@ input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
html {
background-color: black;
}
/*
lol
*/

View file

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en" class="bg-warning">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -7,16 +7,25 @@
<title>UTSA Placeholders</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link href="./confirmation.css" rel="stylesheet">
<link href="./confirmation.css" type="text/css "rel="stylesheet">
</head>
<body>
<form>
<div class="mb-3">
Check your email for a 6 digit code and enter it below.
<form class="mt-5 bg-warning">
<div class="m-3 fs-4 d-block bg-transparent text-center">
Check your email for a 6-digit code and enter it below.
</div>
<div>
<input for="">
<div class="input-group input-group-lg d-flex justify-content-center">
<input class="input-group-text font-monospace" for="" required>
</div>
<div class="m-3 d-block text-center">
<input id="submit" type="submit" value="Confirm" class="btn btn-secondary">
</div>
<div class="mt-5 fs-6 text-center">
<!--add link below to href or something to send another email to the registered user-->
<a href="">Send again.</a>
</div>
</form>
</body>

View file

@ -0,0 +1,47 @@
:root {
--utsa-orange: #f15a22;
--utsa-blue: #0c2340;
}
html {
background-color: var(--utsa-orange);
}
#rform {
border-radius: 10px;
border: solid var(--utsa-orange) 2px;
margin: 100px;
padding: 30px;
background-color: white;
}
#formbg {
background-color: var(--utsa-orange);
}
#h3bg {
background-color: var(--utsa-blue);
}
h3 {
border-radius: 10px;
padding: 20px;
margin: 10px;
background-color: var(--utsa-blue);
color: var(--utsa-orange);
font-size: 40px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form-label {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form-control {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form-text {
padding: 3px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}

View file

@ -10,6 +10,26 @@
<link href="./forgotpassword.css" rel="stylesheet">
</head>
<body>
<div id="h3bg" class="d-flex justify-content-center"><h3 id="r">UTSA Place</h3></div>
<div id="formbg" class="d-flex p-2 justify-content-center align-items-center">
<form id="rform" method="post">
<div class="d-flex justify-content-center fs-3">
Forgot Password
</div>
<br><br>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" name="email" aria-describedby="emailHelp" required>
<div id="emailHelp" class="form-text">Enter your email and we will send you a 6-digit recovery code.</div>
</div>
<input id="submit" type="submit" class="btn btn-primary" value="Send Code">
<br>
<div class="d-flex mt-2">
<small>
Click <a href="login.html">here</a> to go back to login.
</small>
</div>
</form>
</div>
</body>
</html>

View file

@ -20,6 +20,12 @@
<li>
<a href="./login.html"> Login </a>
</li>
<li>
<a href="./forgotpassword.html"> Forgot Password </a>
</li>
<li>
<a href="./confirmation.html"> Confirmation </a>
</li>
<li>
<a href="./logout"> Log Out </a>
</li>