forked from karanlohia98/NodejsApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Webform</title>
</head>
<body>
<form class='' action="http://localhost:3000/search" method="post">
<b>Search Through Email-id</b><br>
<input type="email" id="emailIs" required="True" name="emailIs"><br>
<button type="submit" required="True" value="submit" name="submit">Submit</button>
<br>
</form>
<br>
<br>
<b>Sign-up/Update</b><br>
<form class="" action="http://localhost:3000/" method="post">
User Name:<br>
<input type="text" id="userName" required="True" name="userName"><br>
Email ID:<br>
<input type="email" id="emailId" required="True" name="emailId"><br>
Phone No:<br>
<input type="tel" id="phoneNo" required="True" name="phoneNo"><br>
Password:<br>
<input type="password" id="password" required="True" name="password"><br>
<br>
<button type="submit" required="True" value="submit" name="submit">Submit</button>
</form>
</body>
</html>