-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaccountPage.html
32 lines (26 loc) · 1.07 KB
/
accountPage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Login to Your Account - York Auctions</title>
<script src = "york.js"></script>
<link rel="stylesheet" href="york.css">
<link rel="icon" type="image/x-icon" href="faviconyork.png">
</head>
<body onload="passTime()">
<h1 style="color:red;" style="text-align:center;">MR YORK AUTOGRAPH SALE</h1>
<p>Login to your York Auctions account to complete your transaction! You're so close!!!</p>
<p id="aboveBox"><br>Username/Email</p>
<input type="text" id="userInput" name="userInput" required />
<p id="aboveBox"><br>Password</p>
<input type="password" id="passwordInput" name="passwordInput" required />
<p id="incorrectText" name="incorrectText"></p>
<p style="font-size: 100%;" id="createAccount" name="createAccount">No Account?
<a href="accountCreationPage.html">Create One!</a>
</p>
<p>
<button onclick="loginButton()">Login!!</button>
</p>
<p id="bottomText">By continuing to use this website, you consent to the use of cookies.</p>
<p id="bottomText">Copyright York Industries 2024. No Refunds!</p>
</body>
</html>