-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.php
63 lines (58 loc) · 2.08 KB
/
contacts.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
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="ru">
<head>
<?php $website_title = 'Контакты';
require 'blocks/head.php'; ?>
</head>
<body>
<?php require 'blocks/header.php'; ?>
<main class="container mt-5">
<div class="row">
<div class="col-md-8 mb-3">
<h4>Обратная связь<h4>
<form action="" method="post">
<label for="username">Ваше имя</label>
<input type="text" name="username" id="username" class="form-control">
<label for="email">Email</label>
<input type="email" name="email" id="email" class="form-control">
<label for="mess">Сообщение</label>
<textarea name="mess" id="mess" class="form-control"></textarea>
<div class="alert alert-danger mt-2" id="errorBlock"></div>
<button type="button" id="mess_send" class="btn btn-success mt-3">
Отправить сообщение
</button>
</form>
</div>
<?php require 'blocks/aside.php';?>
</div>
</main>
<?php require 'blocks/footer.php'; ?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$('#mess_send').click(function () {//при нажатии на кнопку в режиме асинхронности
var name = $('#username').val();
var email = $('#email').val();
var mess = $('#mess').val();
$.ajax({
url: 'ajax/mail.php', //тот файлик по которому будет выполняться скрипт
type: 'POST',
cache: false,
data: {'username' : name, 'email' : email, 'mess' : mess},
dataType: 'html',
success: function(data) {
if(data == 'Готово') {
$('#mess_send').text('Все готово');
$('#errorBlock').hide();
$('#username').val("");//После отправки все
$('#email').val("");
$('#mess').val("");
} else {
$('#errorBlock').show();
$('#errorBlock').text(data);
}
}
});
});
</script>
</body>
</html>