Skip to content

Instantly share code, notes, and snippets.

@myogeshchavan97
Created November 26, 2019 11:45
Show Gist options
  • Save myogeshchavan97/ce57be49c9b46aa2a85c2d1de906dea1 to your computer and use it in GitHub Desktop.
Save myogeshchavan97/ce57be49c9b46aa2a85c2d1de906dea1 to your computer and use it in GitHub Desktop.
Index.html file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<form method="post" action="/users">
<div class="form-group">
<label for="firstName">First Name</label>
<input type="text" class="form-control" name="firstName" id="firstName" placeholder="Enter first name">
</div>
<div class="form-group">
<label for="lastName">Last Name</label>
<input type="text" class="form-control" name="lastName" id="lastName" placeholder="Enter last name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" name="email" id="email" placeholder="Enter email">
</div>
<button type="submit" class="btn btn-primary">Add User</button>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment