Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.27 KB | None | 0 0
  1. <%--
  2.  Created by IntelliJ IDEA.
  3.  User: roger
  4.  Date: 04/12/2016
  5.  Time: 18:11
  6.  To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html; charset=UTF-8" %>
  9. <%@ taglib prefix="s" uri="/struts-tags" %>
  10. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  11. "http://www.w3.org/TR/html4/loose.dtd">
  12. <html>
  13.   <head>
  14.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  15.     <title>iBei</title>
  16.     <link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
  17.     <link rel="stylesheet" href="css/palette.css">
  18.   </head>
  19.  
  20.   <body>
  21.     <header class="w3-container default-primary-color">
  22.       <h3 class="text-primary-color">Authentication</h3>
  23.     </header>
  24.     <div class="w3-container">
  25.       <form class="w3-form" method="post" action="hello">
  26.         <div class="w3-input-group">
  27.           <label>E-mail</label>
  28.           <input class="w3-input" name="email" type="text" required/>
  29.         </div>
  30.         <div class="w3-input-group">
  31.           <label>Password</label>
  32.           <input class="w3-input" name="password" type="password" required/>
  33.         </div>
  34.  
  35.           <button type="submit" class="w3-btn dark-primary-color">Login</button>
  36.  
  37.       </form>
  38.     </div>
  39.  
  40.   </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement