Advertisement
Guest User

Signup HTML code

a guest
Aug 3rd, 2017
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <link href="https://fonts.googleapis.com/css?family=Bellefair" rel="stylesheet">
  5.     <title>sign up</title>
  6.     <link rel = "stylesheet" type = "text/css" href="/static/css/style.css">
  7.   </head>
  8.   <body>
  9.         <div class="imagebox">
  10.             <div class="transbox">
  11.             </div>
  12.             <div class="form">
  13.                 <form class="namebox" action="/signup" method="POST">
  14.                     email:<br>
  15.                     <input required type="email" name="email">
  16.                     <br>
  17.                     password:<br>
  18.                     <input required type="password" name="password">
  19.                     <br>
  20.                     confirm password:<br>
  21.                     <input required type="password" name="password2">
  22.                     <br><br>
  23.                     <input type="submit" value="sign up">
  24.                 </form>
  25.             </div>
  26.         </div>
  27.   </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement