-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
30 lines (30 loc) · 1.07 KB
/
Copy pathform.html
File metadata and controls
30 lines (30 loc) · 1.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h2>Node JS Submit Form with Express Js - RemoteStack.io</h2>
<form action="/" method="POST">
<div class="form-group mb-3">
<label>First name</label>
<input type="text" class="form-control" placeholder="First name" name="firstName">
</div>
<div class="form-group mb-3">
<label>Last name</label>
<input type="text" class="form-control" placeholder="Last name" name="lastName">
</div>
<div class="form-group mb-3">
<label>Email</label>
<input type="email" class="form-control" placeholder="Email" name="email">
</div>
<div class="d-grid mt-3">
<button type="submit" class="btn btn-danger">Submit</button>
</div>
</form>
</body>
</html>