mirror of
https://github.com/adanrsantos/ThePlaceHolders.git
synced 2024-12-16 12:20:37 -06:00
Merge branch 'main' of https://github.com/adanrsantos/ThePlaceHolders
combining code
This commit is contained in:
commit
dfc0702228
|
@ -3,3 +3,13 @@ input[type=number]::-webkit-outer-spin-button {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-color: black;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
|
||||||
|
lol
|
||||||
|
|
||||||
|
*/
|
|
@ -1,5 +1,5 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en" class="bg-warning">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
@ -7,16 +7,25 @@
|
||||||
<title>UTSA Placeholders</title>
|
<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">
|
<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>
|
<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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<form>
|
<form class="mt-5 bg-warning">
|
||||||
<div class="mb-3">
|
<div class="m-3 fs-4 d-block bg-transparent text-center">
|
||||||
Check your email for a 6 digit code and enter it below.
|
Check your email for a 6-digit code and enter it below.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div class="input-group input-group-lg d-flex justify-content-center">
|
||||||
<input for="">
|
<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>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
|
@ -10,6 +10,26 @@
|
||||||
<link href="./forgotpassword.css" rel="stylesheet">
|
<link href="./forgotpassword.css" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<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>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -20,6 +20,12 @@
|
||||||
<li>
|
<li>
|
||||||
<a href="./login.html"> Login </a>
|
<a href="./login.html"> Login </a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="./forgotpassword.html"> Forgot Password </a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="./confirmation.html"> Confirmation </a>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="./logout"> Log Out </a>
|
<a href="./logout"> Log Out </a>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in a new issue