aboutsummaryrefslogtreecommitdiffstats
path: root/etherpad/src/templates/pro/account/signin-guest.ejs
blob: 621c3810cbbe461b308bb731a9e4f9f595df3ddf (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
<% /* 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.includeCss("pro/account.css") %>
<% helpers.includeJQuery() %>
<% helpers.includeJs("pro/signin-client.js") %>
<% helpers.setHtmlTitle("EtherPad: Sign In") %>

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

    <form id="guest-signin-form"
          action="<%= request.path + '?' + request.query %>" method="post"
          style="border: 1px solid #5a5; background: #efe; padding: 1em;">

      <div style="font-weight: bold;">Guest Sign In:</div>

      <% if (errorMessage) { %>
        <div style="margin: 1em 0; padding: 1em; border: 1px solid red; background: #fee;">
          <%= errorMessage %>
        </div>
      <% } %>

      <p>Enter your name to be displayed to other users:</p>
      <input id="guestDisplayName" type="text" name="guestDisplayName" value="<%= guestName
      %>" />
      <input type="hidden" name="localPadId" value="<%= localPadId %>" />

      <input type="submit" value="Request Access" />

    </form>

    <form id="account-signin-choice"
          method="get"
          action="/ep/account/sign-in">
      <input type="hidden" name="guest" value="1" />
      <input type="hidden" name="padId" value="<%= toHTML(localPadId) %>" />
      Account holders: <button>Sign in</button>
    </form>
  </div>
</div>