aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/home.html
blob: 4af6a80a55882e14d290da219bbb053eec47ef68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{% extends "layout.html" %}

{% block body %}
<header id="header" class="row">
  <div class="col-xs-12 col-sm-5 offset-md-2">
    <h2>{{ _("Manage your shared <br />expenses, easily") }}</h2>
    {% if is_demo_project_activated %}
        <a href="{{ url_for('.demo') }}" class="tryout btn">
            {{ _("Try out the demo") }}
        </a>
    {% endif %}
    {% if g.lang == 'fr' %}
        ou <a class="showcase btn" onclick="javascript:showGallery(); return false;">Voir la BD explicative</a>
        <img class="showcaseimg" src="{{ url_for("static", filename='images/indicate.svg') }}" />
    {% endif %}
  </div>
  <div class="col-xs-12 col-sm-4">
    <table class="additional-content"><tr>
      <td>
        {{ _("You're sharing a house?") }}<br />
        {{ _("Going on holidays with friends?") }}<br />
        {{ _("Simply sharing money with others?") }} <br />
        <strong>{{ _("We can help!") }}</strong>
      </td>
      <td>
        <img class="shareimg" src="{{ url_for("static", filename='images/share.svg') }}" />
      </td>
    </tr></table>
  </div>
</header>
<main class="row home">
  <div class="card-deck ml-auto mr-auto">
    <div class="card">
      <div class="card-header">
        {{ _("Log in to an existing project") }}
      </div>
      <div class="card-body">
        <form
          id="authentication-form"
          class="form-horizontal"
          action="{{ url_for('.authenticate') }}"
          method="post"
        >
          <fieldset class="form-group">
            <legend></legend>
            {{ forms.authenticate(auth_form, home=True) }}
          </fieldset>
          <div class="controls">
            <button class="btn btn-primary btn-block" type="submit">
              {{ _("Log in") }}
            </button>
            <a
              class="password-reminder btn btn-link"
              href="{{ url_for('.remind_password') }}"
              >{{ _("can't remember your password?") }}</a
            >
          </div>
        </form>
      </div>
    </div>
    <div class="card">
      <div class="card-header">
        {{ _("Create a new project") }}
      </div>
      <div class="card-body">
        {% if is_public_project_creation_allowed %}
            <form
            id="creation-form"
            class="form-horizontal"
            action="{{ url_for('.create_project') }}"
            method="post"
            >
            <fieldset class="form-group">
                {{ forms.create_project(project_form, home=True) }}
            </fieldset>
            <div class="controls">
                <button class="btn btn-primary btn-block" type="submit">
                {{ _("Create") }}
                </button>
            </div>
            </form>
        {% else %}
            <a href="{{ url_for('.create_project') }}">
                {{ _("Create a new project") }}
            </a>
        {% endif %}
      </div>
    </div>
  </div>
</main>
{% endblock %}
{% block js %}
$('#creation-form #password').tooltip({
    title: '{{ _("This access code will be sent to your friends. It is stored as-is by the server, so don\\'t reuse a personal password!")}}',
    trigger: 'focus',
    placement: 'right'
});
{% endblock %}