-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.27 KB
/
index.html
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>
<head>
<meta charset="UTF-8">
<title>Hi Puppy ❤️</title>
<link rel="stylesheet" href="/css/reset.css">
<link rel="stylesheet" href="/css/style.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div id="body">
<h1>puppy.cash
<button type="button" name="button" id="clearButton">↺</button>
</h1>
<br>
<table>
<thead>
<tr>
<td class="header label">
<h2>Total</h2>
</td>
<td class="header entry">
<h2>$<span id="budgetAmount" bud="375"></span>
</h2>
</td>
</tr>
</thead>
<tbody>
<tr class="entryRow" id="ER1">
<td class="delButton">🞪</td>
<td class="label"><input type="text" name="" value="" placeholder="Name"></td>
<td class="entry"><input type="number" name="" value="" placeholder="0"></td>
</tr>
</tbody>
</table>
<button type="button" name="button" id="addButton">+</button>
</div>
<form action="fieldData.php" method="POST">
<fieldset>
<legend>Add to log</legend>
<p>
Message:
<textarea name="message"></textarea>
</p>
<p>
<input type="submit" value="SAVE" />
</p>
</fieldset>
</form>
</body>
</html>