regluit/frontend/templates/registration/welcome.html

21 lines
983 B
HTML
Raw Normal View History

2015-04-28 03:24:02 +00:00
{% extends 'registration/registration_base.html' %}
2016-05-11 14:41:50 +00:00
{% block title %}Welcome to Unglue.It{% endblock %}
{% block doccontent %}
<div id="welcomesearch">
<p>Welcome, {{user.username}}!</p><p id="link-to-next"></p>
2015-05-06 20:14:13 +00:00
<label>Search and add free-licenced books! </label>
2015-04-28 03:24:02 +00:00
<form action="{% url 'search' %}" method="get">
2015-05-06 20:14:13 +00:00
<input type="text" onfocus="imgfocus()" onblur="imgblur(0)" size="25" class="inputbox" name="q" value="{{ q }}">
<input type="submit" class="greenbutton" value="Search">
</form>
</div>
<br />
<div class="welcomealternatives">
Or you can <a href="{% url 'edit_user' %}">change your username</a> &#151; <a href="{% url 'work_list' 'popular' %}">see the site's favorite books</a> &#151; <a href="{% url 'feedback' %}">send us feedback</a> &#151; <a href="{% url 'notification_notice_settings' %}">manage your contact preferences</a>
</div>
{% endblock %}