-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminRegistration.html
48 lines (41 loc) · 1.63 KB
/
adminRegistration.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Administrator Registration</title>
<link rel="stylesheet" href="mainStyling.css">
<link rel="stylesheet" href="formMainStyling.css">
</head>
<body>
<div id="general">
<!-- here the main header -->
<header>
<h1>Bibliography</h1>
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="searchBibliography.html">Search Items</a></li>
<li><a href="userLogIn.html" class='actualPosition'>Log In</a></li>
<li><a href="#">Add New Items</a></li>
</ul>
</nav>
</header>
<!-- here the place of each item of bibliography -->
<section class="">
<article class="">
<form class="" action="adminInsert.php" method="post">
<fieldset>
<legend>User Registration</legend>
<input type="text" name="name" id="left" value="" placeholder="Enter your name">
<input type="text" name="surname" id="left" value="" placeholder="Enter your surname">
<input type="email" name="email" id="left" value="" placeholder="Enter email">
<input type="password" name="password" id="left" value="" placeholder="Enter password">
<input type="submit" name="" id="left" value="Register" >
</fieldset>
</form>
</article>
</section>
<footer>©2022 Bibliography</footer>
</div><!-- end of div general -->
</body>
</html>