-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignuppage.php
94 lines (81 loc) · 5.38 KB
/
signuppage.php
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title of the page -->
<title>Flixathon - Sign Up</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Linking external stylesheets -->
<link rel="stylesheet" href="style.css">
<!-- Linking google fonts -->
<link href="https://fonts.googleapis.com/css?family=Arvo&display=swap" rel="stylesheet">
<!-- Linking icons -->
<link rel="icon" href="company-logo.png">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="./index.php"><img src="company-logo.png" class="logo"><img src='./logo-flixathon-crop.png' class='logobrand'></a>
</nav>
<!-- Form -->
<div class="container2">
<h2>Create an account</h2>
<form action="signup.php" method="POST" id="signupform">
<label for="username">Username</label>
<br>
<input id="username" type="text" name="username" class="form-control" placeholder="Enter username">
<!--<br>-->
<p style="font-size: 14px; color: red;" id="err-username"> </p>
<label for="email">Email</label>
<br>
<input id="email" type="email" name="email" class="form-control" placeholder="Enter email address">
<!--<br>-->
<p style="font-size: 14px; color: red;" id="err-email"> </p>
<label for="password">Password</label>
<br>
<input id="password" name="password" class="form-control" placeholder="Enter password" type="password">
<!--<br>-->
<p style="font-size: 14px; color: red;" id="err-password"> </p>
<label for="password2">Confirm Password</label>
<br>
<input id="password2" name="password2" class="form-control" placeholder="Enter password again" type="password">
<!--<br>-->
<p style="font-size: 14px; color: red;" id="err-password2"> </p>
<button class="btn" name="signup" value="Sign Up" type="submit" id="signupbutton">SIGN UP</button>
</form>
<p><a style="color: black;" href="./loginpage.php">Already have an account?</a></p>
<div id="message"></div>
</div>
<!-- Footer -->
<div style="margin-top: 200px; height: auto; text-align: center;" class="container-fluid">
<div id="footerself">
© Copyright. All rights reserved.
</div>
<div style='margin-top: 5px;' class="btn-group" role="group" aria-label="Basic example">
<button type="button" class="footerbtn"><img id='selfimage' src='./self-image-circle.png'></img></button></button>
<button type="button" style="margin-top: 2px;" class="footerbtn"><span class='foottext' style='color: white;'>Developed by<br></span><span class='foottext' style='color: white;'>Subham Das</span></button>
</div>
<br>
<div style='margin-top: 25px; margin-bottom: 15px;' class="btn-group" role="group" aria-label="Basic example">
<button type="button" class="footerbtn" onclick="window.open('https://github.com/das-jishu')"><img class='footimage' id='github' title='Github' src='./GitHub-Mark-Light-120px-plus.png'></img></button>
<button type="button" class="footerbtn" onclick="window.open('https://www.facebook.com/subham.das.39948')"><img class='footimage' id='facebook' title='Facebook' src='./facebook_logos_PNG19754.png'></img></button>
<button type="button" class="footerbtn" onclick="window.open('https://www.linkedin.com/in/subham-das-51b5bb171/')"><img class='footimage' id='linkedin' title='Linkedin' src='./linkedIn_PNG37.png'></img></button>
<button type="button" class="footerbtn" onclick="window.open('https://twitter.com/lord_danton')"><img class='footimage' id='twitter' title='Twitter' src='./twitter_PNG34.png'></img></button>
</div>
</div>
<!-- Scripts -->
<script>
document.getElementById('self').onclick=function() {
window.open('https://github.com/das-jishu', '_blank');
};
</script>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js">
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="./indexscript.js"></script>
</body>
</html>