Created
March 3, 2012 19:08
-
-
Save stanpalatnik/1967577 to your computer and use it in GitHub Desktop.
Index source
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title>{+title}7th-Degree{/title}</title> | |
<script type="text/javascript" src='/javascripts/utils.js'></script> | |
<link rel="stylesheet" type="text/css" href="/stylesheets/style.css"> | |
{+http_header/} | |
</head> | |
<body> | |
<div id="wrapper"> | |
<div id="header"> | |
<div class="logo"></div> | |
<div class="header_login"> | |
{?username} | |
{username} | |
{:else} | |
<form method="POST" action="/signin"> | |
<label>Email <input type="text" name="user[username]" id="s-user"></label> | |
<label>Password<input type="text" name="user[password]" id="s-pass"></label> | |
<input type="submit" class="submit" value="Login"> | |
</form> | |
{/username} | |
</div> | |
{+header/} | |
</div> | |
<div id="content"> | |
<div id="right"> | |
{+right/} | |
</div> | |
<div id="left"> | |
{+left/} | |
</div> | |
</div> | |
<div id="footer"> | |
<ul> | |
<li>About</li> | |
<li>Contact/Bug Report</li> | |
<li>Copyright © 2011-2012 Stanislav Palatnik. All rights reserved.</li> | |
</ul> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment