diff options
Diffstat (limited to '')
4 files changed, 0 insertions, 142 deletions
diff --git a/etherpad/src/templates/pro/account/create-admin-account.ejs b/etherpad/src/templates/pro/account/create-admin-account.ejs deleted file mode 100644 index 2a6c9f8..0000000 --- a/etherpad/src/templates/pro/account/create-admin-account.ejs +++ /dev/null @@ -1,37 +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.includeCss("pro/account.css") %> - -<div class="fpcontent"> - <div class="account-container"> - - <h3>Welcome to your own EtherPad server!</h3> - - <p>To get started, please create an administrator account. This - account will also be the primary admin contact for this - system.</p> - - <%= errorDiv() %> - - <%= renderAccountForm('create-admin-account', [ - {title: "Create Admin Account"}, - {text: "fullName", label: "Full Name:"}, - {text: "email", label: "Email:"}, - {password: "password", label: "Password:"}, - {password: "passwordConfirm", label: "Confirm Password:"}, - {submit: "Create Account"} - ]) %> - - </div> -</div> - diff --git a/etherpad/src/templates/pro/account/global-multi-domain-recover-email.ejs b/etherpad/src/templates/pro/account/global-multi-domain-recover-email.ejs deleted file mode 100644 index d2eb4de..0000000 --- a/etherpad/src/templates/pro/account/global-multi-domain-recover-email.ejs +++ /dev/null @@ -1,27 +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. */ %> -Dear <%= accountList[0].fullName %>, - -We received a request to recover the EtherPad password for "<%= -email %>. We found multiple accounts linked to this email address. -Please choose one of the following URLs to proceed with recovering the -password for that EtherPad site: - -<% for (var i = 0; i < accountList.length; i++) { %> -<%= recoverLink(accountList[i], domainList[i]) %> -<% } %> - --- -If you did not request a password reset, simply ignore this email. - diff --git a/etherpad/src/templates/pro/account/guest-knock.ejs b/etherpad/src/templates/pro/account/guest-knock.ejs deleted file mode 100644 index 44c69c0..0000000 --- a/etherpad/src/templates/pro/account/guest-knock.ejs +++ /dev/null @@ -1,27 +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/guest-knock-client.js") %> -<% helpers.includeCss("pro/account.css") %> - -<div id="guest-knock-box"> - <p> - <img src="/static/img/misc/status-ball.gif"> - Waiting for approval... - </p> -</div> - -<div id="guest-knock-denied"> - Access Denied. -</div> - diff --git a/etherpad/src/templates/pro/account/signin-guest.ejs b/etherpad/src/templates/pro/account/signin-guest.ejs deleted file mode 100644 index 621c381..0000000 --- a/etherpad/src/templates/pro/account/signin-guest.ejs +++ /dev/null @@ -1,51 +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.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> - |