Changeset 684
- Timestamp:
- 06/16/08 13:14:38 (6 months ago)
- Files:
-
- oss/headstock/headstock/example/microblog/design/default/css/style.css (modified) (3 diffs)
- oss/headstock/headstock/example/microblog/design/default/templates/index.mako (modified) (1 diff)
- oss/headstock/headstock/example/microblog/design/default/templates/newaccount_step2.mako (modified) (1 diff)
- oss/headstock/headstock/example/microblog/design/default/templates/signin.mako (modified) (1 diff)
- oss/headstock/headstock/example/microblog/design/default/templates/userindex.mako (added)
- oss/headstock/headstock/example/microblog/design/default/templates/welcome.mako (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
oss/headstock/headstock/example/microblog/design/default/css/style.css
r678 r684 82 82 height:60px; 83 83 margin:0px; 84 padding :0px;84 padding-top: 20px; 85 85 } 86 86 … … 89 89 border-top:#FFFFFF 2px solid; 90 90 margin:0px; 91 padding :0px;91 padding-top:20px; 92 92 } 93 93 … … 141 141 font-style: normal; 142 142 } 143 144 #headerlogo { 145 font-family: courier, serif; 146 font-size: 35px; 147 font-weight: bold; 148 } 149 150 #footerrights { 151 } oss/headstock/headstock/example/microblog/design/default/templates/index.mako
r678 r684 3 3 <div id="doc" class="yui-t3"> 4 4 <div id="hd"> 5 < !-- PUT MASTHEAD CODE HERE -->5 <span id="headerlogo">speak up</span> 6 6 </div> 7 7 <div id="bd"> 8 8 <div id="yui-main"> 9 <div id="container-1"> 10 <ul> 11 <li><a href="#speakup"><span>Speak up</span></a></li> 12 %if context.get('profiletpl'): 13 <li><a href="#profile"><span>Profile</span></a></li> 14 %endif 15 </ul> 16 <div id="speakup"> 17 %if context.get('speakuptpl'): 18 <%include file="${context.get('speakuptpl')}" /> 19 %endif 20 </div> 21 %if context.get('profiletpl'): 22 <div id="profile"> 23 <%include file="${context.get('profiletpl')}" /> 24 </div> 25 %endif 9 Welcome back. 26 10 </div> 27 11 </div> oss/headstock/headstock/example/microblog/design/default/templates/newaccount_step2.mako
r678 r684 1 <div> 2 <span>Now that you have authentified against your OpenID provider you can create an account by filling the form below. It may be pre-populated from your OpenID details if you have set them.</span> 1 <%include file="/header.mako"/> 2 <body> 3 <div id="doc" class="yui-t3"> 4 <div id="hd"><span id="headerlogo">speak up</span></div> 5 <div id="bd"> 6 <div id="yui-main"><div> 7 <span>Now that you have authentified against your OpenID provider you can create an account by filling the form below. It may be pre-populated from your OpenID details if you have set them.</span> 3 8 </div> 4 <br /> 5 %if error is not UNDEFINED: 6 <div> 7 <span class="error-message"> 8 ${error} 9 </span> 10 </div> 11 <br /> 12 % endif 13 <div class="persona-data"> 14 <form action="/signup/complete" method="post"> 15 <label for="username">Username:</label> 16 <input type="text" value="${username}" name="username" id="username" /> 17 <input type="submit" value="Complete"/> 9 <br /> 10 %if error is not UNDEFINED: 11 <div> 12 <span class="error-message"> 13 ${error} 14 </span> 15 </div> 16 <br /> 17 % endif 18 <div class="persona-data"> 19 <form action="/signup/complete" method="post"> 20 <label for="username">Username:</label> 21 <input type="text" value="${username}" name="username" id="username" /> 22 <input type="submit" value="Complete"/> 23 </div> 24 </form> 25 </div> 26 </div> 27 <div id="ft"> 28 <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"> 29 <img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/80x15.png"/> 30 </a> 31 2008 Sylvain Hellegouarch 32 </div> 18 33 </div> 19 </ form>20 < /div>34 </body> 35 <%include file="/footer.mako"/> oss/headstock/headstock/example/microblog/design/default/templates/signin.mako
r678 r684 2 2 <body> 3 3 <div id="doc" class="yui-t3"> 4 <div id="hd">< /div>4 <div id="hd"><span id="headerlogo">speak up</span></div> 5 5 <div id="bd"> 6 6 <div id="yui-main"> oss/headstock/headstock/example/microblog/design/default/templates/welcome.mako
r678 r684 1 <div> 2 Welcome to Speak Up! 1 <%include file="/header.mako"/> 2 <body> 3 <div id="doc" class="yui-t3"> 4 <div id="hd"> 5 <span id="headerlogo">speak up</span> 6 </div> 7 <div id="bd"> 8 <div id="yui-main"><div> 9 Welcome to Speak Up! 3 10 4 This small demo offers some possibilities about enhancing user experience over the web by integrating regular web applications with instant messaging applications. This means a greater interactivity for users.5 </div> 11 This small demo offers some possibilities about enhancing user experience over the web by integrating regular web applications with instant messaging applications. This means a greater interactivity for users. 12 </div> 6 13 7 <div> 8 If you want to try it out you may create an account by providing your OpenID below: 9 </div> 10 <br /> 11 <div id="signin"> 12 <form action="/signup/" method="get"> 13 <input type="text" name="openid_url" size="150" id="openid-identifier"/> 14 <input type="submit" value="Sign up" /> 15 </form> 16 </div> 14 <div> 15 If you want to try it out you may create an account by providing your OpenID below: 16 </div> 17 <br /> 18 <div id="signin"> 19 <form action="/signup/" method="get"> 20 <input type="text" name="openid_url" size="150" id="openid-identifier"/> 21 <input type="submit" value="Sign up" /> 22 </form> 23 </div> 24 25 </div> 26 </div> 27 <div id="ft"> 28 <span id="footerrights"> 29 <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"> 30 <img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/80x15.png"/> 31 </a> 32 2008 Sylvain Hellegouarch 33 </span> 34 </div> 35 </div> 36 </body> 37 <%include file="/footer.mako"/>
