<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Registration Form</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.registration-form {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.registration-form h2 {
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.form-group input[type=”submit”] {
background-color: #5cb85c;
color: #fff;
border: none;
cursor: pointer;
}
.form-group input[type=”submit”]:hover {
background-color: #4cae4c;
}
</style>
</head>
<body>
<div class=”registration-form”>
<h2>Register</h2>
<form action=”/register” method=”post”>
<div class=”form-group”>
<label for=”first-name”>First Name</label>
<input type=”text” id=”first-name” name=”first_name” required>
</div>
<div class=”form-group”>
<label for=”last-name”>Last Name</label>
<input type=”text” id=”last-name” name=”last_name” required>
</div>
<div class=”form-group”>
<label for=”email”>Email</label>
<input type=”email” id=”email” name=”email” required>
</div>
<div class=”form-group”>
<label for=”password”>Password</label>
<input type=”password” id=”password” name=”password” required>
</div>
<div class=”form-group”>
<input type