-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-create.php
More file actions
57 lines (54 loc) · 2.16 KB
/
user-create.php
File metadata and controls
57 lines (54 loc) · 2.16 KB
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
<?php
session_start();
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>User - Create</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
</head>
<body>
<?php include('navbar.php')?>
<div class="container mt-5">
<?php include('notEmpty.php'); ?>
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4>Add user
<a href="index.php" class="btn btn-danger float-end">Return</a>
</h4>
</div>
<div class="card-body">
<form action="action.php" method="post">
<div class="mb-3">
<label for="nameId">Name</label>
<input type="text" name="name" id="nameId" class="form-control">
</div>
<div class="mb-3">
<label for="emailId">Email</label>
<input type="text" name="email" id="emailId" class="form-control">
</div>
<div class="mb-3">
<label for="dateId">Date of Birth</label>
<input type="date" name="date_of_birth" id="dateId" class="form-control">
</div>
<div class="mb-3">
<label for="passwordId">Password</label>
<input type="password" name="password" id="passwordId" class="form-control">
</div>
<div class="mb-3">
<button type="submit" name="create_user" class="btn btn-primary">Save</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
</body>
</html>
<?php