-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackoffice-frontend.php
67 lines (60 loc) · 2.28 KB
/
backoffice-frontend.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div><img>images/logo.png</img></div>
<div><div class="site-header">
<div class="main-navigation">
<div class="responsive_menu">
<ul>
<li><a class="show-1 templatemo_home" href="#">Fruit</a></li>
<li><a class="show-2 templatemo_page2" href="#">Blad & Specerijen</a></li>
<li><a class="show-3 templatemo_page3" href="#">Noten & Zaden</a></li>
<li><a class="show-4 templatemo_page4" href="#">Melk & Sap</a></li>
<li><a class="show-5 templatemo_page5" href="#">Account & Ondersteuning</a></li>
</ul>
</div></div>
<div class="container">
<div class="row">
<div class="col-md-12 responsive-menu">
<a href="#" class="menu-toggle-btn">
<i class="fa fa-bars"></i>
</a>
</div> <!-- /.col-md-12 -->
<div class="col-md-12 main_menu">
<ul>
<li><a class="show-1 templatemo_home" href="#">Fruit</a></li>
<li><a class="show-2 templatemo_page2" href="#">Blad & Specerijen</a></li>
<li><a class="show-3 templatemo_page3" href="#">Noten & Zaden</a></li>
<li><a class="show-4 templatemo_page4" href="#">Melk & Sap</a></li>
<li><a class="show-5 templatemo_page5" href="#">Account & Ondersteuning</a></li>
</ul>
</div> <!-- /.col-md-12 -->
</div> <!-- /.row -->
</div> <!-- /.container -->
</div> <!-- /.main-navigation -->
<div>
<form>
First name:<br>
<input type="text" name="fruit"><br>
Fruit:<br>
<input type="text" name="Land van oorsprang">
Land van oorsprong :<br>
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other
</form>
</div>
<?php
// put your code here
?>
</body>
</html>