Skip to content

Instantly share code, notes, and snippets.

@amardeep18
Created November 14, 2019 05:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amardeep18/602d0c8464cf6b21ea81b0436c5822f7 to your computer and use it in GitHub Desktop.
Save amardeep18/602d0c8464cf6b21ea81b0436c5822f7 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Make PDF</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
<form method="post" action="makepdf.php" class="offset-md-3 col-md-6">
<h1 class="m-4">Create Your Own PDF</h1>
<div class="row mb-2">
<div class="col-lg-6">
<input type="text" name="fname" placeholder="First Name" class="form-control" required>
</div>
<div class="col-lg-6">
<input type="text" name="lname" placeholder="Last Name" class="form-control" required>
</div>
</div>
<div class="row mb-2">
<div class="col-lg-6">
<input type="email" name="email" placeholder="Email" class="form-control" required>
</div>
<div class="col-lg-6">
<input type="tel" name="phone" placeholder="Phone" class="form-control" required>
</div>
</div>
<div class="row mb-2">
<div class="col-lg-12">
<textarea name="message" placeholder="Your Message" class="form-control"></textarea>
</div>
</div>
<button class="btn btn-success btn-lg btn-block"> send PDF</button>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment