-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (43 loc) · 1.41 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!--
| | /\
| | / \ |
|-------| /____\ |
| | / \ |
| | / \ |____
Author : Jean Lionel Nininahazwe
2019
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Making a pdf </title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<body>
<div class="container mt-5">
<form method="post" action="makePdf.php" class="offset-md-3 col-md-6">
<h1>Create yaur own pdf file</h1>
<p>Fill this fields to create a simple pdf</p>
<div class="row mb-2">
<div class="col-md-6">
<input type="text" name="fname" placeholder="First Name" class="form-control" required="">
</div>
<div class="col-md-6">
<input type="text" name="lName" placeholder="Last Name" class="form-control" required="">
</div>
</div>
<div class="mb-2">
<input type="text" name="fone" placeholder="Fone" class="form-control" required="">
</div>
<div class="mb-2">
<input type="text" name="email" placeholder="Email" class="form-control" required="">
</div>
<div class="mb-2">
<textarea name="message" placeholder="yaur Message" class="form-control"></textarea>
</div>
<input type="submit" class="btn btn-success btn-block">
</form>
</div>
</body>
</html>