-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
82 lines (78 loc) · 3.6 KB
/
signup.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
<!DOCTYPE html>
<html lang="en"><!-- InstanceBegin template="/Templates/usertemplate.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<!-- InstanceBeginEditable name="EditRegion1" -->
<title>Online Library-Sign-Up</title>
<!-- InstanceEndEditable -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#"><img src="images\logo.png" height="50" width="300"></a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="new.html">What's New</a></li>
<li><a href="aboutus.html">About The Library</a></li>
<li><a href="publication.html">Publications</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="admin.php"><button type="button" class="btn btn-primary btn-md">Admin Log-In</button></a></li>
<li><a href="signup.php"><button type="button" class="btn btn-primary btn-md">Join-Today,Its Free...!</button></a></li> </ul>
</div>
</nav>
<div id="mycarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#mycarousel" data-slide-to="0" class="active"></li>
<li data-target="#mycarousel" data-slide-to="1"></li>
<li data-target="#mycarousel" data-slide-to="2"></li>
<li data-target="#mycarousel" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="images\img4.jpg" style="height:400px;width:1350px">
</div>
<div class="item">
<img src="images\img1.jpg" style="height:400px;width:1350px">
</div>
<div class="item">
<img src="images\img2.jpg" style="height:400px;width:1350px">
</div>
<div class="item">
<img src="images\img3.jpg" style="height:400px;width:1350px">
</div>
</div>
<a class="left carousel-control" href="#mycarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#mycarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div><br><br>
<!-- InstanceBeginEditable name="EditRegion2" --><div class="container-fluid">
<div class="col-sm-2">
</div>
<div class="col-sm-8">
<div class="jumbotron" style="background-color:#996699">
<center><img src="images\signup.jpg" height="100" width="700"></center><br>
<form id="f1" method="post" class="form-horizontal" action="welcome.php" enctype="multipart/form-data">
<h4>User Name:</h4><input type="text" class="form-control" name="un" placeholder="Enter User Name"><br>
<h4>E-Mail:</h4><input type="email" class="form-control" name="mail" placeholder="E-Mail"><br>
<h4>Password:</h4><input type="password" class="form-control" name="pwd" placeholder="Password"><br>
<h4>Mobile:</h4><input type="tel" class="form-control" name="mob" placeholder="Mobile"><br>
<h4>Enter Your Address:</h4><input type="text" class="form-control" name="add" placeholder="Address"><br>
<h4>Choose Your Picture:</h4><input type="file" class="form-control" name="img">
<br><br>
<center><button type="submit" class="btn btn-primary btn-lg" id="submit">Submit</button></center></form>
</div></div>
<div class="col-sm-2"></div></div>
<!-- InstanceEndEditable -->
</body><!-- InstanceEnd -->