frontend
Browse files
frontend
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
|
3 |
+
<html>
|
4 |
+
|
5 |
+
<head>
|
6 |
+
|
7 |
+
<title>Child Cost Estimator</title>
|
8 |
+
|
9 |
+
</head>
|
10 |
+
|
11 |
+
<body>
|
12 |
+
|
13 |
+
<h1>Child Cost Estimator</h1>
|
14 |
+
|
15 |
+
<form action="/estimate" method="post">
|
16 |
+
|
17 |
+
<input type="text" name="location" placeholder="Location">
|
18 |
+
|
19 |
+
<input type="text" name="income" placeholder="Income">
|
20 |
+
|
21 |
+
<input type="text" name="family_size" placeholder="Family Size">
|
22 |
+
|
23 |
+
<input type="submit" value="Estimate">
|
24 |
+
|
25 |
+
</form>
|
26 |
+
|
27 |
+
</body>
|
28 |
+
|
29 |
+
</html>
|