Guest User

Untitled

a guest
Sep 3rd, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. {extends file="./Templates/basetemplate.tpl"}
  2. {block 'title'}Create-a-bot{/block}
  3. {block 'mainContent'}
  4.  
  5. <h1>AXE Creation Panel</h1>
  6. <form action="create" method="POST">
  7. {if $loggedIn}Currently Logged in as: <strong>{$user.username}</strong> <br />
  8. {else}
  9. If you have an account please <a href="home">LOGIN</a> beforing continuing. Otherwise continue on to make a new account.<br />
  10. Username:<input type="text" name="newusername" id="newusername" /><br />
  11. Password:<input type="text" name="newpassword" id="newpassword" /><br />
  12. {/if}
  13. Room(id or room name, can be changed later):<input type="text" name="room" id="room" /><br />
  14. <input type="submit" value="Create!" />
  15. </form>
  16.  
  17. <script>
  18. {if $displayError}
  19. $(function () {
  20. errorDia("{$errorM}");
  21. });
  22. {/if}
  23. </script>
  24. {/block}
Add Comment
Please, Sign In to add comment