steem-login.html 1.0 KB

1234567891011121314151617181920212223
  1. <div id="{{form-id}}-container" style="text-align: center; width: 100%">
  2. <form id="{{form-id}}" style="display: table; margin: auto; text-align: left; border: 1px solid black; padding: 8px; width: fit-content;">
  3. <h2>STEEM Login</h2>
  4. <p class="error-message"></p>
  5. <p>
  6. <input class="username" name="username" type="text" placeholder="Username">
  7. </p>
  8. <p>
  9. <input class="postingKey" name="postingKey" type="password" placeholder="Private Posting Key">
  10. <a href="javascript:void(0)" title="SteemIt.com &gt; Wallet &gt; Permissions &gt; Posting Key (read description) &gt; Private Key">?</a>
  11. </p>
  12. <p style="text-align: center;">
  13. Valid until the tab is closed
  14. </p>
  15. <p style="text-align: center">
  16. <input type="button" value="Login" onclick="{{login-function}}('{{form-id}}');">
  17. <input type="button" value="Cancel" onclick="{{cancel-function}}('{{form-id}}');">
  18. </p>
  19. <p style="text-align: center;">
  20. <a href="javascript:{{logout-function}}('{{form-id}}');">Logout</a>
  21. </p>
  22. </form>
  23. </div>