-
Notifications
You must be signed in to change notification settings - Fork 0
/
newuser.php
96 lines (73 loc) · 2.86 KB
/
newuser.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
95
96
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<link href="https://fonts.googleapis.com/css?family=Anton|Itim|Oswald" rel="stylesheet">
<title>Chatter Box</title>
<style>
.main{
padding:20px;margin:0px;border:0px;
background:url('images/pic1.jpg');
background-size:cover;
background-position:center;
width:100%;
height:100%;
overflow:hidden;
}
.signup{
padding-top:50px;
padding-left:50px;
padding-right:30px;
}
h1{
text-align:right;font-family:'Anton',sans-serif;font-size:400%;padding-right:50px;color:#D52E40;
}
h2{
font-family: 'Itim', cursive;font-size:250%;
}
</style>
</head>
<body>
<div class="main" >
<h1>Chatter Box</h1>
<div class="row" style="float:right">
<div class="signup" style=";">
<div class="row"><h2>Join the Club</h2></div>
<form enctype="multipart/form-data" method="POST" action='signup.php'>
<input type="hidden" name="MAX_FILE_SIZE" />
<div class="row">
<label for="username" style=" font-family: 'Itim', cursive;font-size:120%;">Username:
<input type="text" name="username" required></input>
</div>
<div class="row">
<label for="email" style=" font-family: 'Itim', cursive;font-size:120%;">Email Id:
<input type="text" name="email" style="margin-left:15px;" required></input>
</div>
<div class="row">
<label for="password" style=" font-family: 'Itim', cursive;font-size:120%;">Password:
<input type="password" name="password" style="margin-left:5px;" required></input>
</div>
<div class="row">
<label for="Cnfpassword" style=" font-family: 'Itim', cursive;font-size:120%;"> Confirm<BR/>Password:
<input type="text" name="cnfpassword" style="margin-left:5px;" required></input>
</div>
<div class="row">
<input type="submit" name="submit" value="Sign up" style="border-radius:5px;background:#D52E40; width: 20em; height: 2em;"></input>
</div>
</form>
<div class="row" style=" font-family: 'Itim', cursive;font-size:150%;">
<a href="index.php">Now enter the room</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>