Advertisement
Guest User

Untitled

a guest
May 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. <form action="" method="POST" class="login-form">
  2. <?php User::Login(); ?>
  3. <input type="text" name="username" class="rounded-input blue-active" id="login-username-input-target" placeholder="Usuário">
  4. <i class="flaticon-user-1"></i>
  5. </label>
  6. <label for="login-password-input-target" class="password-input">
  7. <input type="password" name="password" class="rounded-input blue-active" id="login-password-input-target" placeholder="Senha">
  8. <i class="flaticon-padlock"></i>
  9. </label>
  10. <!--
  11. <a href="https://playrise.me/account/forgot" class="claim-password" data-close-popup="true">Forgot password?</a>
  12. -->
  13. <button type="submit" name="login" class="rounded-button blue plain">Login</button>
  14. </form>
  15.  
  16.  
  17. <?php User::Register(); ?>
  18.  
  19. <h3 class="aside-title">Crie seu Avatar</h3>
  20. <form action="" method="POST" class="login-form" autocomplete="off">
  21.  
  22. <input type="text" required name="username" class="rounded-input blue-active" id="login-username-input-target" placeholder="Usuário">
  23. <i class="flaticon-user-1"></i>
  24. </label>
  25.  
  26. <label for="login-username-input-target" class="username-input">
  27. <input type="email" required name="email" class="rounded-input blue-active" id="login-username-input-target" placeholder="Email">
  28. <i class="flaticon-email"></i>
  29. </label>
  30.  
  31. <label for="login-password-input-target" class="password-input">
  32. <input type="password" required name="password" class="rounded-input blue-active" id="login-password-input-target" placeholder="Senha">
  33. <i class="flaticon-padlock"></i>
  34. </label>
  35.  
  36. <label for="login-password-input-target" class="password-input">
  37. <input type="password" required name="password_repeat" class="rounded-input blue-active" id="login-password-input-target" placeholder="Repita sua senha">
  38. <i class="flaticon-padlock"></i>
  39. </label>
  40.  
  41. <button type="submit" name="register" class="rounded-button blue plain">Crie meu avatar!</button>
  42. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement