-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
46 lines (40 loc) · 1.24 KB
/
index.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
<?php
include 'init.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>QA App | PXL BROS</title>
<link href="/style/fonts.css" rel="stylesheet">
<link href="/style/format.css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<form action="/send.php" method="post" id="formyform">
<input type="hidden" name="submit" value="1">
<div class="projecttitle">
<input class="title-input" type="text" name="project_title" id="project_title" value="Project Title">
</div>
<?php foreach ( $types as $index => $type ): ?>
<div style="clear:both">
<div class="accordionButton <?= $type['class'] ?>">
<h4><?= $type['name'] ?></h4>
<h4 class="plus">+</h4>
</div>
<div class="accordionContent">
<?php include 'includes/form.php' ?>
</div>
</div>
<?php endforeach ?>
<!-- Submit Report Button -->
<div class="sendreport">
<input id="sendreportbutton" type="submit" value="Submit Report">
</div>
</form>
</div>
<script src="/includes/jquery.min.js"></script>
<script src="/includes/javascript.js"></script>
</body>
</html>