Open arif98741 opened 5 years ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="header">
<h2>CRUD Application</h2>
<h3>Registration</h3>
</div>
<div class="content">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Profile(<i>Admin</i>)</a></li>
<li><a href="userlist.html">User List</a></li>
<li><a href="login.html" class="active">Login</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</nav>
<br>
<br>
<h2>User Registration Page</h2><hr>
<form action="" method="post">
<p>Name</p>
<input type="text" name="name" placeholder="Enter name">
<p>Username</p>
<input type="text" name="username" placeholder="Enter username">
<p>Password</p>
<input type="password" name="password" placeholder="Enter password"><br>
<p>Email</p>
<input type="text" name="name" placeholder="Enter Email">
<p>Address</p>
<textarea name="address" id="" cols="55" rows="5"></textarea><br>
<input type="submit" value="Login" name="login">
<!-- <p class="success">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Numquam, enim.</p>
-->
</form>
</div>
<div class="footer">
<h2>© Copyright 2019- <a href="https://github.com/arif98741" target="_blank">Ariful Islam</a></h2>
</div>
</div>
</body>
</html>