21 lines
983 B
HTML
21 lines
983 B
HTML
{% extends 'registration/registration_base.html' %}
|
|
|
|
|
|
{% block title %}Welcome to Unglue.It{% endblock %}
|
|
{% block doccontent %}
|
|
<div id="welcomesearch">
|
|
<p>Welcome, {{user.username}}!</p><p id="link-to-next"></p>
|
|
<label>Search and add free-licenced books! </label>
|
|
<form action="{% url 'search' %}" method="get">
|
|
<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> — <a href="{% url 'work_list' 'popular' %}">see the site's favorite books</a> — <a href="{% url 'feedback' %}">send us feedback</a> — <a href="{% url 'notification_notice_settings' %}">manage your contact preferences</a>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|