Skip to content
Snippets Groups Projects
creationFil.jsp 1.07 KiB
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>

<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Liste des Fils</title>
    <!-- Bootstrap CSS -->
    <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
    <div class="container">
        <h1 class="mt-5">Créer un nouveau fil de discussion</h1>
        <form action="creationFil" method="post" class="mt-4">
            <div class="form-group">
                <label for="nom">Nom du fil:</label>
                <input type="text" class="form-control" id="nom" name="nom" required>
            </div>
            <div class="form-group">
                <label for="createuremail">Email du créateur:</label>
                <input type="text" class="form-control" id="createuremail" name="createuremail">
            </div>
            <button type="submit" class="btn btn-primary">Créer</button>
        </form>
    </div>
</body>
</html>