forked from seito-developer/simple-app-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-form.html
33 lines (29 loc) · 1.01 KB
/
data-form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<header class="header">
<nav class="nav" id="js-nav">
<a data-page="index" href="./index.html">TOP</a>
<a data-page="data-table" href="./data-table.html">DATA TABLE</a>
<a data-page="data-form" href="./data-form.html">DATA FORM</a>
</nav>
</header>
<div class="container">
<form class="form" id="js-firebase-form" action="/" method="post">
<p>First: <input name="first" type="text" value=""></p>
<p>Last: <input name="last" type="text" value=""></p>
<p>Born: <input name="born" type="text" value=""></p>
<div>
<button type="submit">Add Data</button>
</div>
</form>
</div>
<script type="module" src="/assets/scripts/main.js"></script>
</body>
</html>