small changes to index, added register.css

This commit is contained in:
th3keyboard 2024-10-09 18:18:15 -05:00
parent cb7bc7eda4
commit 094d5ef9af
4 changed files with 13 additions and 7 deletions

View file

@ -14,22 +14,22 @@
</h1>
<ul>
<li>
<a href="/register.html"> Register </a>
<a href="./register.html"> Register </a>
</li>
<li>
<a href="/login.html"> Login </a>
<a href="./login.html"> Login </a>
</li>
<li>
<a href="/logout"> Log Out </a>
<a href="./logout"> Log Out </a>
</li>
<li>
<a href="/secret"> Secret </a>
<a href="./secret"> Secret </a>
</li>
<li>
<a href="/canvas.html">Canvas </a>
<a href="./canvas.html">Canvas </a>
</li>
<a href="/secret"> Secret </a>
<a href="./secret"> Secret </a>
</li>
</ul>
</body>

5
static/register.css Normal file
View file

@ -0,0 +1,5 @@
#rform {
border-radius: 10px;
padding: 10px;
background-color: orange;
}

View file

@ -7,13 +7,14 @@
<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="./register.css" rel="stylesheet">
</head>
<body>
<!-- <div class="d-flex justify-content-xxl-center" style="background-color: #0C2340; color:#f15a22; font-weight: 900; font: x-large;"><h1>UTSA PLACE</h1></div> -->
<br>
<div class="d-flex justify-content-center"><h3>Registration</h3></div>
<div class="d-flex p-2 justify-content-center align-items-center">
<form method="post">
<form id="rform" method="post">
<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" pattern="^[^\s@]+@my\.utsa\.edu$" oninput="emailCheck()" required>

View file