-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
102 lines (81 loc) · 2.98 KB
/
Copy pathsignup.php
File metadata and controls
102 lines (81 loc) · 2.98 KB
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
95
96
97
98
99
100
101
102
<?php include('validator.php'); include('mysqlicon.php'); include('mylinks.php'); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>signup</title>
<link rel="stylesheet" type="text/css" href="a.css">
</head>
<!-- style -->
<style type="text/css">
#signupbtn{
width: 300px;
}
#signupbtn:hover{
background-color: blue;
}
body{
font-family: carili;
background-color: white;
}
#label{
color:gray;
}
#header{
text-align: center;
font-size: 50px;
font-weight: bold;
}
#link{
text-align: center;
}
a{
text-decoration: none;
}
@font-face {
font-family: magneto;
src: url(MAGNETOB.ttf);
}
@keyframes colorchange{
0% {background-color: red;}
20% {background-color: green;}
40% {background-color: orange;}
60% {background-color: lightgreen;}
80% {background-color: pink;}
100% {background-color: cyan;}
}
</style>
<!-- /style -->
<body>
<form class="container" style="padding-top: 1%;" method="post">
<h1 style="text-align: center; color:blue;font-size: 100px;"><font face="magneto">vyral.</font><font face="magneto" color="gold" style="border:2px solid cyan; background-color: royalblue; text-shadow: 5px 2px 4px gray; animation-name: colorchange; animation-duration: 10s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-direction: reverse;">ly</font></h1>
<div id="label"><h3>NAME:</h3></div>
<div class="form-group">
<div class="form-row">
<div class="col-md-6"><input type="text" name="firstname" class="form-control" placeholder="Enter your first name" required></div>
<div class="col-md-6"><input type="text" name="lastname" class="form-control" placeholder="Enter your last name" required></div>
</div>
</div>
<div class="form-group">
<div class="form-row">
<div class="col-md-6"><input type="text" name="username" class="form-control" placeholder="Enter your preferred username" required></div>
<div class="col-md-6"><input type="text" name="email" class="form-control" placeholder="Enter your email" required></div>
</div>
</div>
<div id="label"><h3>SET PASSWORD:</h3></div>
<div class="form-group">
<div class="form-row">
<div class="col-md-6"><input type="password" name="password" class="form-control" placeholder="Enter password" required></div>
<div class="col-md-6"><input type="password" name="confirmpassword" class="form-control" placeholder="confirm password" required></div>
</div>
</div>
<div class="bg-warning text-light"><?php echo $error;?></div>
<div class="form-group" align="center">
<input type="submit" name="signup" value="Signup" class="btn btn-primary" id="signupbtn">
</div>
</form>
<div id=link><a href="login.php">LOGIN HERE</a></div>
<div id=tac class="row"><a href="tac.php" class="col-md-6">Terms&Conditions</a><a href="#" class="col-md-6" style="text-align: right;">All rights reserved© 2019.</a></div>
</body>
</html>