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
This commit is contained in:
commit
2d16e983b8
|
@ -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
5
static/register.css
Normal file
|
@ -0,0 +1,5 @@
|
|||
#rform {
|
||||
border-radius: 10px;
|
||||
padding: 10px;
|
||||
background-color: orange;
|
||||
}
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue