27 lines
716 B
Text
27 lines
716 B
Text
|
|
<!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>
|