Login
4 branches 0 tags
Ben (U939/Arch Linux) Minor styling and improved permission system 78d990d 1 month ago 18 Commits
rubhub / templates / project_new.html
<!DOCTYPE html>
<html>
<head>
    <title>New project</title>
</head>
<body>
    <section>
        <h1>Create a new project</h1>
        <p>Give it a name and we'll generate a slug.</p>
        {% if let Some(msg) = message %}
            <div class="message" role="status">{{ msg }}</div>
        {% endif %}
        <form method="post" action="/projects/new" class="stack card simple-form">
            <label>
                Project name
                <input name="name" type="text" required>
            </label>
            <button type="submit">Create project</button>
        </form>
    </section>
</body>
</html>