11 lines
316 B
HTML
11 lines
316 B
HTML
{% extends 'base_simple.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">
|
|
<input type="text" value="{{invite.code}}" onClick="this.select()"/>
|
|
</div>
|
|
{% endblock %}
|