-
Notifications
You must be signed in to change notification settings - Fork 1
/
add.php
42 lines (37 loc) · 1.24 KB
/
add.php
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
<!DOCTYPE html>
<html>
<head>
<style>
fieldset {
background-color: #eeeeee;
}
legend {
background-color: gray;
color: white;
padding: 5px 10px;
}
input {
margin: 5px;
}
</style>
</head>
<body>
<h1 style="text-align: center;">Send Email Using PHPMailer</h1>
<form style="max-width:500px;margin:auto; class="user" action="email.php" method="POST" enctype="multipart/form-data">
<fieldset>
<legend>Personalia:</legend>
<label for="fname">Email Subject:</label>
<input type="text" autocomplete="off" name="post_sub" placeholder="Post subject"><br><br>
<label for="lname">Email Title:</label>
<input type="text" autocomplete="off" name="post_name" placeholder="Post name"><br><br>
<label for="email">Email:</label>
<input type="email" id="search" name="post_email" placeholder="Post email" autocomplete="off"><br><br>
<label for="birthday">Email Desciption:</label>
<input type="textarea" autocomplete="off" name="post_description" placeholder="Post Description"><br><br>
<label for="birthday">Email Link:</label>
<input type="text" autocomplete="off" name="post_link" placeholder="Post Link"><br><br>
<input type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>