Guest User

Untitled

a guest
Jul 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.89 KB | None | 0 0
  1.  
  2. <form action="<?= URL::site('/members'); ?>" method="post" accept-charset="utf-8">
  3.     <label for="username">Username:</label>
  4.     <input id="username" type="text" name="username" value="<?= Arr::get($values, 'username'); ?>" />
  5.     <label for="username" class="error"><?= Arr::get($errors, 'username'); ?>
  6.  
  7.     <label for="password">Password:</label>
  8.     <input id="password" type="password" name="password" value="<?= Arr::get($values, 'password'); ?>" />
  9.     <label for="password" class="error"><?= Arr::get($errors, 'password'); ?>
  10.  
  11.     <label for="password_confirm">Repeat Password:</label>
  12.     <input id="password_confirm" type="password" name="_external[password_confirm]" value="<?= Arr::path($values, '_external.password_confirm'); ?>" />
  13.     <label for="password_confirm" class="error"><?= Arr::path($errors, '_external.password_confirm'); ?>
  14.  
  15.     <button type="submit">Create</button>
  16. </form>
Add Comment
Please, Sign In to add comment