diff --git a/browserid/static/dialog/controllers/forgotpassword_controller.js b/browserid/static/dialog/controllers/forgotpassword_controller.js deleted file mode 100644 index 739c3ebd3fc914299b0bbdddd275804ee02fde4d..0000000000000000000000000000000000000000 --- a/browserid/static/dialog/controllers/forgotpassword_controller.js +++ /dev/null @@ -1,59 +0,0 @@ -/*jshint browser:true, jQuery: true, forin: true, laxbreak:true */ -/*global BrowserIDWait:true, BrowserIDErrors: true, PageController: true */ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (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.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is Mozilla BrowserID. - * - * The Initial Developer of the Original Code is Mozilla. - * Portions created by the Initial Developer are Copyright (C) 2011 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * - * Alternatively, the contents of this file may be used under the terms of - * either the GNU General Public License Version 2 or later (the "GPL"), or - * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - * in which case the provisions of the GPL or the LGPL are applicable instead - * of those above. If you wish to allow use of your version of this file only - * under the terms of either the GPL or the LGPL, and not to allow others to - * use your version of this file under the terms of the MPL, indicate your - * decision by deleting the provisions above and replace them with the notice - * and other provisions required by the GPL or the LGPL. If you do not delete - * the provisions above, a recipient may use your version of this file under - * the terms of any one of the MPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ -(function() { - "use strict"; - - PageController.extend("Forgotpassword", {}, { - init: function(el, options) { - this._super({ - bodyTemplate: "forgotpassword.ejs", - bodyVars: options - }); - }, - - - submit: function() { - var email = $("#email_input").val(); - this.close("forgotpassword:reset", { - email: email - }); - } - }); - -}()); - - diff --git a/browserid/static/dialog/dialog.js b/browserid/static/dialog/dialog.js index 1f17319507deab697696949b85d45835a3f892d7..8f29abb4dc029a34a32a80ab5d9ad66fbad13115 100644 --- a/browserid/static/dialog/dialog.js +++ b/browserid/static/dialog/dialog.js @@ -64,13 +64,11 @@ steal.plugins( 'dialog', 'authenticate', 'checkregistration', - 'forgotpassword', 'pickemail') // loads files in controllers folder .views('authenticate.ejs', 'body.ejs', 'confirmemail.ejs', - 'forgotpassword.ejs', 'pickemail.ejs', 'wait.ejs' ). diff --git a/browserid/static/dialog/views/forgotpassword.ejs b/browserid/static/dialog/views/forgotpassword.ejs deleted file mode 100644 index 0114efc06e62bef723d93dd15d3c98116632adc6..0000000000000000000000000000000000000000 --- a/browserid/static/dialog/views/forgotpassword.ejs +++ /dev/null @@ -1,15 +0,0 @@ - <h2>Reset Password</h2> - - <ul id="inputs"> - <li> - <label for="email_input"> Email </label> - <input id="email_input" type="email" value="<%= email %>"/> - </li> - - <li class="submit cf"> - <button>Reset Password</button> - <button id="back">Cancel</button> - </li> - </ul> - -