-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
52 lines (41 loc) · 1.51 KB
/
admin.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
<!doctype html>
<html lang="zh-Hant">
<head>
<?php
$keywords = '';
$description = '';
$title = '';
$page = 'admin';
require('./component/common/head.php');
?>
</head>
<body>
<?php require('./component/header.php'); ?>
<div class="ih-page-<?php echo $page ?> ih-page">
<div class="ih-section-form">
<div class="row">
<div class="col-12 col-md-6 offset-md-3 col-xl-4 offset-xl-4">
<h1 class="ih-margin-bottom-30 text-center">
問卷
</h1>
<form action="./index.php" method="post">
<div class="form-group">
<label for="googleFormId">Google Form ID</label>
<input type="text" class="form-control" id="googleFormId" name="googleFormId" value="1FAIpQLSesrkfMB0dmXl67abKqdkqYuG6lBID9QuHWFh4_ueTn3UZUZQ">
</div>
<div class="form-group">
<label for="googleSheetId">Google Sheet ID</label>
<input type="text" class="form-control" id="googleSheetId" name="googleSheetId" value="1cjc1VDMqxySbvqoHsE9otQ89tS5HmVcKIDGhzmRUc0M">
</div>
<button type="submit" class="btn btn-dark float-right">
送出
</button>
</form>
</div>
</div>
</div>
</div>
<?php require('./component/footer.php'); ?>
<?php require('./component/common/foot.php'); ?>
</body>
</html>