Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.99 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>Settings</title>
  6. <meta name="description" content=""/>
  7. <meta name="keywords" content=""/>
  8. {css}
  9. {fonts}
  10. {js}
  11. </head>
  12. <body>
  13. <div id="wrapper">
  14.     <div class="center">
  15.         <div id="container">
  16.             <div id="header">
  17.                 <a id="logo" title="Homepage" href="/"><img src="/images/main/images/logo.png" alt=" " width="220" height="60"/></a>
  18.                 {main_menu}
  19.             </div>
  20.             <div id="content">
  21.                 <div class="one">
  22.                     <div class="slideshow">
  23.                         <div class="one-fourth">
  24.                         <ul class="simple-nav">
  25.                             <li><a href="/settings">Account settings</a></li>
  26.                             <li><a href="/settings">Account settings</a></li>
  27.                         </ul>
  28.                         </div>
  29.                         <div class="inner-content last">
  30.                             {if segment_3 == "success"}
  31.                             <div class="user_success">You've successfully updated your account!</div>
  32.                             {/if}
  33.  
  34.                             <h5>Fill in or edit the fields below to update your profile:</h5>
  35.  
  36.                             {exp:user:edit return="mod_main/update_account/success" error_page="mod_inc/error_template"}
  37.                             <p><label for="username">E-mail</label><input type="text" name="username" id="username" value="{username}" class="text requiredField" /></p>
  38.                             <p><label for="password">New password</label><input type="password" name="password" id="password" class="text requiredField" /></p>
  39.                             <p><label for="confirm_password">Confirm new password</label><input type="password" name="confirm_password" id="confirm_password" class="text requiredField" /></p>
  40.  
  41.                             <h5>In order to update this page, you'll have to submit the current password:</h5>
  42.                             <p><label for="current_password">Current password</label><input type="password" name="current_password" id="current_password" class="text requiredField" /></p>
  43.  
  44.                             <p><input type="submit" name="submit" value="Update" class="button big round orange" />
  45.                             {/exp:user:edit}
  46.                         </div>
  47.                     </div>
  48.                 </div>
  49.                 {copyright}
  50.             </div>
  51.         </div>
  52.     </div>
  53. </div>
  54. </div>
  55. </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement