| 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" lang="en"> |
| 4 | | <head> |
| 5 | | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 6 | | <title> |
| 7 | | {settings-application_name} |
| 8 | | </title> |
| 9 | | <%= javascript_include_tag %> |
| 10 | | <%= javascript_for_current_controller %> |
| 11 | | <%= stylesheet_link_tag "account.css", :media=>'print,screen' %> |
| 12 | | </head> |
| 13 | | <body> |
| 14 | | <div id="layout"> |
| 15 | | <div id="canvas" class="login"> |
| 16 | | |
| 17 | | <div id="header"> |
| 18 | | <div id="site_name"> |
| 19 | | <h1> |
| 20 | | {settings-application_name} |
| 21 | | </h1> |
| 22 | | </div> |
| 23 | | <div id="user_menu"> |
| 24 | | <%= link_to _'sign in', :action => 'sign_in' %> |
| 25 | | {?settings-account_settings-allow_sign_up} |
| 26 | | _{or} |
| 27 | | <%= link_to _'sign up', :action => 'sign_up' %> |
| 28 | | {end} |
| 29 | | </div> |
| 30 | | <div class="cls"></div> |
| 31 | | </div> |
| 32 | | |
| 33 | | <div class="cls"></div> |
| 34 | | <div id="content"> |
| 35 | | <%= flash %> |
| 36 | | {content_for_layout?} |
| 37 | | </div> |
| 38 | | </div> |
| 39 | | </div> |
| 40 | | </body> |
| 41 | | </html> |
| | 1 | <%= render :partial => 'layouts/header' %> |
| | 2 | <body class="account"> |
| | 3 | <div id="dim-screen"></div> |
| | 4 | <div id="container" class="subpage"> |
| | 5 | <h1 id="header"> |
| | 6 | <%= link_to image_tag('twitter_logo_s.png', :width => 175), {:controller => 'user', :action => 'home'}, :title => 'Phwittr home' %> |
| | 7 | </h1> |
| | 8 | <div id="flash" style="display:none;"></div> |
| | 9 | <div class="content-bubble-arrow"></div> |
| | 10 | {content_for_layout} |
| | 11 | <%= render :partial => 'application/footer' %> |
| | 12 | <hr /> |
| | 13 | </div> |
| | 14 | </body> |
| | 15 | <%= render :partial => 'layouts/footer' %> |