-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
36 lines (30 loc) · 959 Bytes
/
dashboard.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Add A Movie</title>
</head>
<body>
{% for message in messages %}
<p style="color:red">{{ message }}</p>
{% endfor %}
<form action="/movie_added" method="POST">
{% csrf_token %}
<h1> Success! Welcome, {{ User_ID.first_name }} </h1>
<div>
<label>Title</label>
<input type="text" name="title" />
</div>
<div>
<label>Description</label>
<input type="text" name="description" />
</div>
<div>
<label>Year</label>
<input type="number" name="year" />
</div>
<button type="submit">Submit</button>
</form>
<a href="/">Log Out</a>
</body>
</html>