76 lines
2.1 KiB
HTML
76 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>SeatStock</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="script.js"></script>
|
|
<link rel="icon" type="image/png" href="/favicon.png" sizes="32x32">
|
|
<link rel="icon" type="image/vnd.microsoft.icon" href="/favicon.ico" sizes="16x16">
|
|
|
|
|
|
</head>
|
|
<body>
|
|
|
|
|
|
|
|
<!-- *************** HEADER ******************** **** -->
|
|
<logo><a href="index.html">SeatStock</a></logo>
|
|
<signinButton><a href="signin.html">Sign In</a></signinButton>
|
|
<faqButton><a href="FAQ.html">How it Works</a></faqButton>
|
|
<tixButton><a href="tickets.html">Your Tickets</a></tixButton>
|
|
|
|
|
|
<!-- ************* BODY ******************** **** -->
|
|
|
|
<div class="signin-body">
|
|
<div class="form-name"><br>Sign In</div>
|
|
<div class="form-name-subtitle">Log in for secure transactions.</div>
|
|
<form action="signIn" class="stuff" method="post">
|
|
<input type="text" placeholder="Email" id="username" name="username" required><br><br>
|
|
<input type="password" placeholder="Password" id="password" name="password" required><br><br>
|
|
<div class="remember-me-container">
|
|
|
|
<input type="checkbox" class="sign-in-checkbox" name="myCheckbox">
|
|
<label for="myCheckbox" class="sign-in-checkbox-label">Remember Me</label> </label>
|
|
</div>
|
|
<div class="sign-in-button-container">
|
|
<button class="sign-in-button">Sign In</button>
|
|
</div>
|
|
<a class="sign-up-link" href="signup.html">Sign Up</a>
|
|
</form>
|
|
<br>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<br><br><br><br><br><br><br><br><br><br><br><br>
|
|
<br><br><br><br><br><br><br><br><br><br><br><br><br>
|
|
<br><br><br><br><br><br><br>
|
|
|
|
<footer>
|
|
<p>© 2023 SeatStock V. All rights reserved. </p>
|
|
</footer>
|
|
</body>
|
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|