-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsitesetting.php
More file actions
27 lines (25 loc) · 1009 Bytes
/
Copy pathsitesetting.php
File metadata and controls
27 lines (25 loc) · 1009 Bytes
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 'include/head.php';?>
<?php include 'include/nav.php';?>
<div class="container content2">
<div class="text-center row">
<div class="columns">
<div class="column col-3"></div>
<div class="column col-6">
<h4>Resto Setting</h4><hr>
<form method="POST">
<div class="form-group">
<label for="some" class="col-form-label">Resto Title</label>
<input type="text" name="title" class="form-control" value="<?php echo siteTitle() ?>" id="some" required>
</div>
<div class="form-group">
<label for="some" class="col-form-label">Resto Name</label>
<input type="text" name="name" value="<?php echo siteName() ?>" class="form-control" id="some" required>
</div>
<div class="center">
<button class="btn btn-primary btn-lg btn-block" name="saveSetting">Save Setting</button>
</div>
</form>
</div>
</div>
</div>
<?php include 'include/footer.php';?>