| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <div id="accountStrand" class="strand">
- <div class="strandHead">
- <h1 id="accountStrandTitle" class="strandTitle"></h1>
- </div>
- <div class="settings">
- <div class="settingsSection">
- <h2>ACCOUNT INFORMATION</h2>
- <label>EMAIL
- <input id="accountEmail" type="email">
- </label>
- <button id="accountUpdate" class="button">UPDATE</button>
- </div>
- <div class="settingsSection">
- <h2>SECURITY</h2>
-
- <button id="accountShowPassword" class="button">CHANGE PASSWORD</button>
- <div id="changePasswordBox"style="display:none;">
- <label>CURRENT PASSWORD
- <input id="accountCurrentPassword" type="password">
- </label>
- <label>NEW PASSWORD
- <input id="accountNewPassword" type="password">
- </label>
- <label>CONFIRM NEW PASSWORD
- <input id="accountConfirmPassword" type="password">
- </label>
- <div id="accountButtonBox" class="buttonBox">
- <button id="cancelPasswordChange" class="button">CANCEL</button>
- <button id="changePasswordButton" class="button">CHANGE PASSWORD</button>
- </div>
- <p>* This will log you out of all current sessions</p>
- </div>
- </div>
- </div>
- </div>
|