-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoitaddr.php
executable file
·27 lines (25 loc) · 998 Bytes
/
doitaddr.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
<?php
//include_once 'server.php';
include 'doitheader.php';
?>
<h4 class="teal-text" style="text-align:center">AddR</h4>
<form class="col s12 l6 offset-l3" action="doitaddrr.php" method="post">
<div class="row">
<div class="input-field col s12">
<i class="mdi mdi-account prefix"></i>
<input id="rname" type="text" name="rname" class="validate" required>
<label for="rname">Title</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<i class="mdi mdi-lock prefix"></i>
<input id="rhour" type="password" name="rhour" class="validate" required>
<label for="rhour">Hours</label>
</div>
</div>
<div class="row">
<button class="btn waves-effect waves-light" type="submit">Submit</button>
<button class="btn waves-effect waves-light" type="reset">Reset</button>
</div>
</form>