32 lines
860 B
Plaintext
32 lines
860 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Contact - Smart Building</title>
|
|
<link rel="stylesheet" href="/styleContact.css" />
|
|
</head>
|
|
<body>
|
|
<%- include('partials/header') %>
|
|
|
|
<main class="contact-container">
|
|
<h1>Nous contacter</h1>
|
|
<p>Une question ? Une suggestion ? N'hésitez pas à nous écrire !</p>
|
|
|
|
<form action="/contact" method="POST" class="contact-form">
|
|
<label for="nom">Nom</label>
|
|
<input type="text" id="nom" name="nom" required />
|
|
|
|
<label for="email">Adresse e-mail</label>
|
|
<input type="email" id="email" name="email" required />
|
|
|
|
<label for="message">Message</label>
|
|
<textarea id="message" name="message" rows="5" required></textarea>
|
|
|
|
<button type="submit">Envoyer</button>
|
|
</form>
|
|
</main>
|
|
|
|
<%- include('partials/footer') %>
|
|
</body>
|
|
</html>
|