-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
30 lines (30 loc) · 990 Bytes
/
Copy pathindex.php
File metadata and controls
30 lines (30 loc) · 990 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>HaHacking - Обратная связь</title>
<link rel="stylesheet" href="index.css">
</head>
<header>
<div class="logo">
<h1>[HaHacking] E-mailI 📧</h1>
</div>
</header>
<body>
<div class="contact">
<h2 class="title">Связаться</h2>
<form action="send.php" method="post">
<label for="name">Адрес электронной почты:</label><br/>
<input type="email" id="email" name="email" placeholder="you@example.org"/><br/>
<label for="text">Текст обращения:</label><br/>
<textarea id="text" name="text" minlength="10" placeholder="Здравствуйте!"></textarea><br/>
<button class="submit">Отправить →</button>
</form>
</div>
</body>
<footer>
<div class="link">
<hr/>
<p><a href="https://t.me/hahacking">@HaHacking</a> © 2023</p>
</div>
</footer>
</html>