-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
48 lines (42 loc) · 1.8 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
47
48
<?php
include "save_info.php"
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Money Tracker</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="vendor-front/bootstrap/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="vendor-front/bootstrap/css/bootstrap-theme.min.css">
</head>
<body>
<a href="get_info.php"> view data </a>
<form action="" method="POST">
<div class="form-group">
<label for="amount">Amount</label>
<input type="number" name="amount" class="form-control" id="amount" placeholder="00.00">
</div>
<div class="form-group">
<label for="concept">Concept</label>
<input type="text" name="concept" class="form-control" id="concept" placeholder="">
</div>
<div class="form-group">
<label for="label">Label</label>
<input type="text" name="label" class="form-control" id="label" placeholder="">
</div>
<div class="form-group">
<label for="date">Date</label>
<input type="date" name="date" class="form-control" id="date" placeholder="">
</div>
<button type="submit" class="btn btn-default big">Submit</button>
</form>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="vendor-front/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>