-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.twig
37 lines (37 loc) · 1.69 KB
/
index.twig
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
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PHP Background Job Sample Application</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
</head>
<body class="container">
<h1>Everybody gets to have an opinion around here!</h1>
<div class="row">
<div class="col-md-6">
<h2>Tell us what you think!</h2>
{% if submitted %}
<div class="alert alert-success" role="alert">Thank you! Your submission will be published after we checked it for offensive language. Please <a href="/">refresh this page</a> in a few seconds!</div>
{% else %}
<p>We'll run your submission through a profanity filter before publishing it to prevent inappropriate language.</p>
<form action="/" method="post">
{{ form_widget(form) }}
<button type="submit" class="btn btn-primary">Submit</button>
</form>
{% endif %}
</div>
<div class="col-md-6">
<h2>Previous submissions</h2>
{% for opinion in opinions %}
<blockquote>
<p>{{ opinion|nl2br }}</p>
</blockquote>
{% endfor %}
</div>
</div>
</body>
</html>