Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
50 lines (45 sloc)
1.64 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends 'layouts/base.njk' %} | |
{% block main %} | |
<form name="new-lolly" action="/new" method="POST"> | |
<div class="lolly"> | |
<div class="giftLolly"> | |
{% include "svg/lolly-image.svg" %} | |
</div> | |
<div class="flavours"> | |
<label for="flavourTop" class="pickerLabel"> | |
<input type="color" class="colourpicker" id="flavourTop" name="flavourTop" value="#d52358" /> | |
</label> | |
<label for="flavourMiddle" class="pickerLabel"> | |
<input type="color" class="colourpicker" id="flavourMiddle" name="flavourMiddle" value="#e95946" /> | |
</label> | |
<label for="flavourBottom" class="pickerLabel"> | |
<input type="color" class="colourpicker" id="flavourBottom" name="flavourBottom" value="#deaa43" /> | |
</label> | |
</div> | |
<div class="info"> | |
<div class="details"> | |
<p> | |
<label for="recipientName">To</label> | |
<input type="text" id="recipientName" name="recipientName" placeholder="A {{ localize["lolly"] }} for..." /> | |
</p> | |
<div class="message"> | |
<label for="message">Say something nice</label> | |
<textarea name="message" id="message" cols="30" rows="10"></textarea> | |
</div> | |
<p> | |
<label for="sendersName">From</label> | |
<input type="text" id="sendersName" name="sendersName" placeholder="from your friend..." /> | |
</p> | |
</div> | |
<input type="submit" value="Freeze this {{ localize["lolly"] }} and get a link"> | |
</div> | |
</div> | |
</form> | |
{% endblock %} | |
{% block scripts %} | |
{% set js %} | |
{% include "js/core.js" %} | |
{% include "js/colorPicker.js" %} | |
{% endset %} | |
<script>{{ js | jsmin | safe }}</script> | |
{% endblock %} |