-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.php
38 lines (28 loc) · 940 Bytes
/
contact.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
<?php
require "header.php";
?>
<main al>
<div class="user">
<header class="user__header">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3219/logo.svg" alt="" />
</header>
<form class="form" action="includes/contactform.php" method="post">
<div class="form__group">
<input type="text" name="name" placeholder="Име" class="form__input" />
</div>
<div class="form__group">
<input type="text" name="mail" placeholder="E-mail" class="form__input" />
</div>
<div class="form__group">
<input type="text" name="Subject" placeholder="Предмет" class="form__input" />
</div>
<div class="form__group">
<input type="message" name="message" placeholder="Съобщение" class="form__input" />
</div>
<button class="btnsignup" type="sumbit" name="submit">Изпрати</button>
</form>
</div>
</main>
<?php
require "footer.php";
?>