-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.twig
41 lines (39 loc) · 1.89 KB
/
setup.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
38
39
40
41
{% extends 'layout.twig' %}
{% block page_title %}{{ parent() }} | Setup{% endblock %}
{% block content %}
<div class="row">
<div class="col-md-6">
<h2>Who Are You?</h2>
{% if flash.error %}
<div class="alert alert-danger alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
{{ flash.error }}
</div>
{% endif %}
<form role="form" method="post" action="/setup" name="setup-form" id="setup-form" class="well well-sm">
<div class="form-group">
<label for="email">Email address</label>
<input type="email" name="email" class="form-control" id="email" placeholder="Enter email" value="{{ email }}" autofocus required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" name="password" class="form-control" placeholder="Password" required>
</div>
<div class="form-group">
<label for="confirm-password">Confirm your password</label>
<input type="password" name="confirm-password" class="form-control" placeholder="Confirm your password" required>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
<div class="col-md-6">
<h2>Don't Forget!</h2>
<p>There are still a few things to do . . .</p>
<ul>
<li>Edit the <code>$userConfig</code> array in <code>/config.php</code> to add your personal information.</li>
<li>You <em>must</em> have a Flickr API key to use Flaming Archer.</li>
<li>If you get stuck, documentation is available on <a href="http://github.com/jeremykendall/flaming-archer" target="_blank">GitHub</a></li>
</ul>
</div>
</div>
{% endblock %}