first commit

This commit is contained in:
jleveau 2019-10-03 15:03:38 +02:00
parent 2430371884
commit a1c86e9cfb
13 changed files with 669 additions and 0 deletions

27
ejs/workshop.ejs Normal file
View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<% include ./head %>
</head>
<body class="container">
<form action="/">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" placeholder="Workshop Name" required>
</div>
<div class="form-group">
<label for="description">Description</label>
<input type="text" 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>