Advertisement
raphaelluiz128

loginctp

Jun 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <?php
  2. /**
  3. * @var \App\View\AppView $this
  4. */
  5. ?>
  6. <nav class="large-3 medium-4 columns" id="actions-sidebar">
  7. <ul class="side-nav">
  8. <li class="heading"><?= __('Actions') ?></li>
  9. <li><?= $this->Html->link(__('New User'), ['controller' => 'Users', 'action' => 'add']) ?></li>
  10. </ul>
  11. </nav>
  12. <div class="users form large-9 medium-8 columns content">
  13. <?= $this->Form->create('login') ?>
  14. <fieldset>
  15. <legend><?= __('Login') ?></legend>
  16. <?php
  17. echo $this->Form->control('username');
  18. echo $this->Form->control('password');
  19. ?>
  20. </fieldset>
  21. <?= $this->Form->button(__('Submit')) ?>
  22. <?= $this->Form->end() ?>
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement