Dennis Potter
ba68a745e7
This commit includes a fully functional template and Rust backend. The website is able to send e-mails, displays strings in multiple languages, include attachments, and has basic protection again spam (IP based).
24 lines
816 B
Plaintext
24 lines
816 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!--===============================================================================================-->
|
|
<link rel="icon" type="image/png" href="../images/favicon.gif"/>
|
|
<!--===============================================================================================-->
|
|
<link rel="stylesheet" type="text/css" href="../css/main.css">
|
|
<!--===============================================================================================-->
|
|
</head>
|
|
<body>
|
|
<div class="contact1">
|
|
<div class="container-contact1">
|
|
<div class="container-message">
|
|
<h1>{{ h1 }}</h1>
|
|
{{ message }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|