You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.8 KiB
77 lines
2.8 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- font-awesome icons -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
|
<!-- custom css -->
|
|
<link rel="stylesheet" href="createAccount.css">
|
|
</head>
|
|
|
|
<body>
|
|
<?php include 'navbar.php'; ?>
|
|
<form method="post" action="register.php">
|
|
<div class="forms-container">
|
|
<div class="row mb-4">
|
|
<div class="col">
|
|
<div class="form-outline">
|
|
<input type="text" id="fname" name="fname" class="form-control" required />
|
|
<label class="form-label" for="fname">First name</label>
|
|
</div>
|
|
</div>
|
|
<div class="col">
|
|
<div class="form-outline">
|
|
<input type="text" id="lname" name="lname" class="form-control" required />
|
|
<label class="form-label" for="lname">Last name</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Job type -->
|
|
<div class="form-outline mb-4">
|
|
<select name="user_type" id="user_type" class="form-control" required>
|
|
<option value="Job seeker" >Job seeker</option>
|
|
<option value="Employer" ">Employer</option>
|
|
</select>
|
|
<label class="form-label" for="user_type">User Type</label>
|
|
</div>
|
|
|
|
|
|
<!-- Contact input -->
|
|
<div class="form-outline mb-4">
|
|
<input type="number" name="contact" id="contact" class="form-control" />
|
|
<label class="form-label" for="contact">Contact</label>
|
|
</div>
|
|
|
|
<!-- Email input -->
|
|
<div class="form-outline mb-4">
|
|
<input type="email" id="email" name="email" class="form-control" required />
|
|
<label class="form-label" for="email">Email address</label>
|
|
</div>
|
|
|
|
<!-- Username input -->
|
|
<div class="form-outline mb-4">
|
|
<input type="text" name="username" id="username" class="form-control" />
|
|
<label class="form-label" for="username">Username</label>
|
|
</div>
|
|
|
|
<!-- Password input -->
|
|
<div class="form-outline mb-4">
|
|
<input type="password" name="password" id="password" class="form-control" required />
|
|
<label class="form-label" for="password">Password</label>
|
|
</div>
|
|
|
|
<!-- Submit button -->
|
|
<button type="submit" class="btn btn-primary btn-block mb-4" name="signup">Sign up</button>
|
|
</div>
|
|
</form>
|
|
|
|
<?php include 'footer.php'; ?>
|
|
</body>
|
|
|
|
</html>
|