-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 959 Bytes
/
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
<html>
<head>
<title>User Information app</title>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body>
<h1>Search</h1>
<form action="http://localhost:3000/searchRequest" method="post">
<input type="text" name="Name" placeholder="wie zoek je?" />
<br>
<button type="submit">Submit</button>
</form>
<a href="http://localhost:3000/allusers">all users</a>
<h1>Add User</h1>
<form action="http://localhost:3000/addRequest" method="post">
<input type="text" name="firstName" placeholder="your name" />
<input type="text" name="lastName" placeholder="your last name" />
<input type="text" name="email" placeholder="your Email adress" />
<br>
<button type="submit">Submit</button>
</form>
<a href="http://localhost:3000/allusers">all users</a>
</body>
</html>