| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <div id="accountStrand" class="strand">
- <div class="strandHead">
- <h1 id="accountStrandTitle" class="strandTitle"></h1>
- </div>
- <div class="settings">
- <div class="settingsSection">
- <div class="settingsSectionHeader">
- <h2>ACCOUNT INFORMATION</h2>
- </div>
- <label>EMAIL
- <input id="accountEmail" type="email">
- </label>
- <button id="accountUpdate" class="button">UPDATE</button>
- </div>
- <div class="settingsSection">
- <div class="settingsSectionHeader">
- <h2>YOUR LOCATIONS</h2>
- <button id="settingsAddMerchant" class="button">NEW LOCATION</button>
- </div>
- <div id="settingsMerchants"></div>
- </div>
- <div class="settingsSection">
- <div class="settingsSectionHeader">
- <h2>SECURITY</h2>
- </div>
- <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>
- <template id="locationDiv">
- <div class="locationDiv">
- <p></p>
- <button class="button">USE</button>
- </div>
- </template>
- </div>
- </div>
|