-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
30 lines (29 loc) · 1021 Bytes
/
index.php
File metadata and controls
30 lines (29 loc) · 1021 Bytes
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
<html>
<head>
<link rel="stylesheet" href="CSS/main.css">
</head>
<body>
<div class="container">
<h3 class="text-center">SendGrid E-mail Tutorial</h3>
<div class="col-md-4 col-md-offset-4">
<div class="form-holder">
<!--Form-->
<form action="SendGrid-API/send-email.php" method="post">
<div class="form-group">
<input type="text" class="form-control" name="name" placeholder="name">
</div>
<div class="form-group">
<input type="text" class="form-control" name="email" placeholder="email">
</div>
<div class="form-group">
<input type="text" class="form-control" name="message" placeholder="message">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>