-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.php
53 lines (41 loc) · 1.73 KB
/
register.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
43
44
45
46
47
48
49
50
51
52
53
<?php include 'header.php'; ?>
<section class="py-16 text-xl">
<div class="container">
<h1 class="text-center text-4xl md:text-5xl font-bold mb-12">
Зарегистрировать свою ферму
</h1>
<div class="row">
<div class="col s12 m6">
<img class="w-full" src="./img/q5.jpg" alt="" />
</div>
<div class="col s12 m6 mt-8 md:mt-0">
<div class="row">
<form action="./mail-2.php" method="POST" class="col s12">
<div class="input-field">
<input id="name" name="name" type="text" class="validate" required />
<label for="name">Имя</label>
</div>
<div class="input-field">
<input id="email" name="email" type="email" class="validate" required />
<label for="email">Почта</label>
</div>
<div class="input-field">
<input type="text" id="phone" name="phone" class="validate" required />
<label for="phone">Телефон</label>
</div>
<div class="input-field">
<textarea type="text" id="farm-desc" name="farm-desc" class="materialize-textarea"></textarea>
<label for="farm-desc">Описание фермы</label>
</div>
<input type="hidden" name="tour" id="tour" value="Природный тур в Коргальджинский заповедник." />
<button class="btn waves-effect waves-light" type="submit">
Отправить данные
<i class="material-icons right">send</i>
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<?php include 'footer.php'; ?>