-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmail.php
More file actions
88 lines (72 loc) · 4.18 KB
/
mail.php
File metadata and controls
88 lines (72 loc) · 4.18 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
</head>
<body >
<div class="container contact-form mt-3 " >
<br>
<div class="contact-image mt-1">
<img src="https://image.ibb.co/kUagtU/rocket_contact.png" alt="rocket_contact"/>
</div>
<form method="post" action="db1.php">
<h3>Compose your message</h3>
<hr>
<div class="row well">
<div class="col-md-6">
<div class="form-group">
<input type="text" name="fromemail" class="form-control" placeholder="Your Email *" />
</div>
<div class="form-group">
<input type="text" name="toemail" class="form-control" placeholder="to Email *" />
</div>
<div class="form-group">
<input type="text" name="heading" class="form-control" placeholder="Heading*" />
</div>
<br>
<div class="form-group mt-1">
<input type="submit" name="compose" class="btnContact" value="Send Message" />
</div>
<br><hr>
</div>
<div class="col-md-6">
<label>Atachment:</label><br> <input type="file" name="filew">
<br>
<div class="form-group">
<br>
<textarea name="msg" class="form-control" placeholder="Your Message *" style="width: 100%; height: 175px;"></textarea>
</div>
<hr>
</div>
</div>
</form>
<h3> Inbox</h3>
<hr>
<div class=" well col-md-112">
<div class="row">
<input type="checkbox" class="mail-checkbox">
<span class="glyphicon glyphicon-star"></span>
<span class="name" style="min-width: 230px;
display: inline-block;">Bhaumik Patel</span>
<span class="" style="min-width: 400px">This is big title</span>
<span class="text-muted" style="font-size: 11px;">- Hi hello how r u ?</span>
<span class="badge" style="min-width: 200px">12:10 AM</span> <span class="pull-right"><span class="glyphicon glyphicon-paperclip">
</span></span>
</div>
<div class="row">
<input type="checkbox" class="mail-checkbox">
<span class="glyphicon glyphicon-star"></span>
<span class="name" style="min-width: 230px;
display: inline-block;">Bhaumik Patel</span>
<span class="" style="min-width: 400px">This is big title</span>
<span class="text-muted" style="font-size: 11px;">- Hi hello how r u ?</span>
<span class="badge" style="min-width: 200px">12:10 AM</span> <span class="pull-right"><span class="glyphicon glyphicon-paperclip">
</span></span>
</div>
</div>
</div>
</body>
</html>