1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
---|
2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" > |
---|
4 | <head> |
---|
5 | <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |
---|
6 | <title>The Art of Engineering Management Login</title> |
---|
7 | <link type="text/css" media="screen" rel="stylesheet" href="../stylesheets/style.css" title="default" /> |
---|
8 | <style type="text/css" media="screen"> |
---|
9 | body { |
---|
10 | margin: 0; |
---|
11 | margin-bottom: 25px; |
---|
12 | padding: 0; |
---|
13 | background-color: #333; |
---|
14 | font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana"; |
---|
15 | font-size: 13px; |
---|
16 | color: #333; |
---|
17 | } |
---|
18 | |
---|
19 | h1 { |
---|
20 | font-size: 28px; |
---|
21 | color: #000; |
---|
22 | } |
---|
23 | </style> |
---|
24 | </head> |
---|
25 | <body> |
---|
26 | |
---|
27 | <div id="Main" style="margin: auto; background-color: white; border: 4px solid #aaa; border-top: none; padding: 15px; width: 600px;"> |
---|
28 | |
---|
29 | <h1 style="margin-top: 2px; padding: 4px; background-color: #aaa; color: #014877; margin-bottom: 0px; border: 2px dashed #888; text-align: center;">The Art of Engineering Management Login</h1> |
---|
30 | <p style="padding: 10px; font-weight: bold; background-color: #ddd; border: 2px solid #aaa; ">You have found the management system login page. Please enter your username and password.</p> |
---|
31 | |
---|
32 | <div style=" background-color: #ddd; border: 2px solid #aaa; padding: 10px;" > |
---|
33 | <% form_tag do -%> |
---|
34 | <p style="margin: 0; padding: 0px;"><label for="login">Login</label><br/> |
---|
35 | <%= text_field_tag 'login' %></p> |
---|
36 | |
---|
37 | <p><label for="password">Password</label><br/> |
---|
38 | <%= password_field_tag 'password' %></p> |
---|
39 | |
---|
40 | <p><label for="remember_me">Remember me:</label> |
---|
41 | <%= check_box_tag 'remember_me' %></p> |
---|
42 | |
---|
43 | <p style="margin: 0; padding: 0px;"><%= submit_tag 'Log in' %></p> |
---|
44 | <% end -%> |
---|
45 | |
---|
46 | </div> |
---|
47 | |
---|
48 | <p style="text-align: center; background-color: #ddd; border: 2px solid #aaa; "> |
---|
49 | [<%= link_to 'Add Account', :action => 'signup' %>] |
---|
50 | [<%= link_to 'Main Page', '/' %>] |
---|
51 | [<%= link_to 'Logout', :action => 'logout' %>] |
---|
52 | </p> |
---|
53 | |
---|
54 | </div> |
---|
55 | |
---|
56 | |
---|
57 | </body> |
---|
58 | |
---|
59 | </html> |
---|
60 | |
---|
61 | |
---|
62 | |
---|
63 | |
---|
64 | |
---|