m2_conduite_projet/ejs/workshop.ejs
2019-10-04 09:36:22 +02:00

27 lines
769 B
Text

<!DOCTYPE html>
<html lang="en">
<head>
<% include ./head %>
</head>
<body class="container">
<form action="/workshop" method="post">
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" class="form-control" id="name" placeholder="Workshop Name" required>
</div>
<div class="form-group">
<label for="description">Description</label>
<input type="text" name="description" class="form-control" id="description" placeholder="Give a description for your workshop" required>
</div>
<button type="submit" class="btn btn-primary">Save</button>
<a type="button" class="btn btn-secondary" href="/">Cancel</a>
</form>
<footer>
<% include ./footer %>
</footer>
</body>
</html>