20 lines
872 B
HTML
20 lines
872 B
HTML
|
{% extends "registration/registration_base.html" %}
|
||
|
|
||
|
{% block title %}Welcome to Unglue.It{% endblock %}
|
||
|
{% block doccontent %}
|
||
|
<div id="welcomesearch">
|
||
|
<p>Welcome, {{user.username}}!</p>
|
||
|
<label>What book would you give to the world? </label>
|
||
|
<form action="{% url search %}" method="get">
|
||
|
<input type="text" id="watermark" 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 auth_password_reset %}">view your profile</a> — <a href="{% url work_list 'popular' %}">see the most wishlisted books</a> — <a href="/feedback/">send us feedback</a>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
|
||
|
|