-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvalidAccountExists.html
32 lines (32 loc) · 1.6 KB
/
invalidAccountExists.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"></html>
<head>
<link rel="stylesheet" href="css/invalidlogin.css"/>
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Open Sans' rel='stylesheet'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
</head>
<body>
<header class = "site-header">
<div id="site-header-name"><a href="index.php">Event Core</a></div>
<a href="index.php"><img id="logo" src="images/ECLogo.png"></a>
</header>
<div class="btn-container">
<div class = "each-btn"><button onclick="location.href = 'index.php#events';" class ="btn">Events</button></div>
<div class = "each-btn"><button onclick="location.href = 'login.html';" class ="btn">Login</button></div>
<div class = "each-btn"><button onclick="location.href = 'signup.html';" class ="btn">Sign up</button></div>
</div>
<br><br><br><br><br>
<div class="form">
<form class="register-form" action = "PHP/signup.php" method="POST">
<input type="text" placeholder="user id" name = "username" />
<input type="password" placeholder="password" name = "password"/>
<input type="password" placeholder="confirm password" name ="confirm"/>
<br><label for="invalid">Invalid sign up! Account already exists.</label><br><br>
<input type="submit" value="submit" name = "submit">
<p class="text">Already registered? <a href="login.html">Login</a></p>
</form>
</div>
</body>
</html>