summaryrefslogtreecommitdiffstats
path: root/trunk/etherpad/src/templates/pro/account/signin.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/etherpad/src/templates/pro/account/signin.ejs')
-rw-r--r--trunk/etherpad/src/templates/pro/account/signin.ejs81
1 files changed, 0 insertions, 81 deletions
diff --git a/trunk/etherpad/src/templates/pro/account/signin.ejs b/trunk/etherpad/src/templates/pro/account/signin.ejs
deleted file mode 100644
index c67bea6..0000000
--- a/trunk/etherpad/src/templates/pro/account/signin.ejs
+++ /dev/null
@@ -1,81 +0,0 @@
-<% /* 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>
-