Files
caminus/templates/profiles/show_invite.html
2012-02-19 22:30:10 -05:00

15 lines
403 B
HTML

{% extends 'base.html' %}
{% block title %}Invite{% endblock %}
{% block content %}
<p>To invite a friend to Caminus, simply share them this code, or link to this page:</p>
<div id="invite-code">
<p>Code</p>
<input type="text" value="{{invite.code}}" onClick="this.select()"/>
<br />
<p>Link</p>
<input type="text" value="{{ invite.get_absolute_url }}" onClick="this.select()"/>
</div>
{% endblock %}