aboutsummaryrefslogtreecommitdiffstats
path: root/trunk/etherpad/src/templates/pro/account/signin.ejs
blob: c67bea6ffed9f4acf37aebd154ed4bd442205026 (plain) (blame)
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
<% /* Copyright 2009 Google Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS-IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */ %><% helpers.includeJQuery() %>
<% helpers.includeJs("pro/signin-client.js") %>
<% helpers.includeCss("pro/account.css") %>
<% helpers.setHtmlTitle("EtherPad: Sign In") %>

<div class="fpcontent">
  <div class="account-container">

  <%= signinNotice() %>

  <form id="signin-form" action="<%= request.path + '?' + request.query %>" method="post">
  <div class="bb bb-signin">
    <div class="bb-top">
      <div class="bb-topleft"><!-- --></div>
      <div class="bb-topright"><!-- --></div>
      <div class="bb-title">Sign In to <%= siteName %> EtherPad</div>
    </div>
    <div class="bb-in">
      <%= errorDiv() %>
      <div>
        <label for="email" id="email-label">Email</label>
        <input class="textin" type="text" name="email" id="email" value="<%= email
        %>" />
        <%= helpers.clearFloats() %>
      </div>

      <div>
        <label for="password" id="password-label">Password</label>
        <input class="passin" type="password" name="password"
        id="password"
        value="<%= password
        %>" />
        <%= helpers.clearFloats() %>
      </div>

      <div>
        <input type="checkbox" id="rememberMe" name="rememberMe"
          <%= (rememberMe ? 'checked="on"' : '') %> />
        <label for="rememberMe" id="rememberMe-label">Remember me on this
        computer</label>

        <button type="submit" class="bluebutton bluebutton120" id="signInButton">
          Sign In
        </button>
        <%= helpers.clearFloats() %>
      </div>

    </div>
  </div>
  </form>

  <% if (showGuestBox) { %>
    <form action="/ep/account/guest-sign-in"
          id="guest-signin-choice"
          method="get">
      <input type="hidden" name="padId" value="<%= toHTML(localPadId) %>" />
      Guests: <button type="submit">Request Guest Access</button>
    </form>
  <% } %>

  <div id="bottom-text">
      <a
      href="/ep/account/forgot-password">Recover lost
      password</a>
  </div>

  </div>
</div>