source: trip-planner/src/main/resources/templates/create-planner.html@ 84d0fbb

Last change on this file since 84d0fbb was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 538 bytes
Line 
1<!DOCTYPE html>
2<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
3<head>
4 <meta charset="UTF-8">
5 <title>Create planner</title>
6</head>
7<body>
8
9<form method="POST" action="create/planner">
10 <div class="form-group">
11 <label>Description </label>
12 <textarea id="pland" name="plandesc" ></textarea>
13 <label>Planner name</label>
14 <input id="plann" name="planname" />
15 </div>
16 <button id="submit" type="submit" class="btn btn-primary">Submit</button>
17</form>
18</body>
19</html>
Note: See TracBrowser for help on using the repository browser.