forked from parzibyte/asistencia-php-rfid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
employee_add.php
52 lines (50 loc) · 1.92 KB
/
employee_add.php
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
<?php
/*
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | |_| \__,_|_| /___|_|_.__/ \__, |\__\___|
__/ | __/ |
|___/ |___/
____________________________________
/ Si necesitas ayuda, contáctame en \
\ https://parzibyte.me /
------------------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
Creado por Parzibyte (https://parzibyte.me).
------------------------------------------------------------------------------------------------
Si el código es útil para ti, puedes agradecerme siguiéndome: https://parzibyte.me/blog/sigueme/
Y compartiendo mi blog con tus amigos
También tengo canal de YouTube: https://www.youtube.com/channel/UCroP4BTWjfM0CkGB6AFUoBg?sub_confirmation=1
------------------------------------------------------------------------------------------------
*/ ?>
<?php
include_once "header.php";
include_once "nav.php";
?>
<div class="row">
<div class="col-12">
<h1 class="text-center">Add employee</h1>
</div>
<div class="col-12">
<form action="employee_save.php" method="POST">
<div class="form-group">
<label for="name">Name</label>
<input name="name" placeholder="Name" type="text" id="name" class="form-control" required>
</div>
<div class="form-group">
<button class="btn btn-success">
Save <i class="fa fa-check"></i>
</button>
</div>
</form>
</div>
</div>
<?php
include_once "footer.php";