Changeset 684

Show
Ignore:
Timestamp:
06/16/08 13:14:38 (6 months ago)
Author:
sylvain
Message:

Updated web templates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • oss/headstock/headstock/example/microblog/design/default/css/style.css

    r678 r684  
    8282        height:60px;  
    8383        margin:0px;  
    84         padding:0px; 
     84        padding-top: 20px; 
    8585} 
    8686 
     
    8989        border-top:#FFFFFF 2px solid; 
    9090        margin:0px;  
    91         padding:0px; 
     91        padding-top:20px; 
    9292} 
    9393 
     
    141141        font-style: normal; 
    142142} 
     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  
    33    <div id="doc" class="yui-t3"> 
    44      <div id="hd"> 
    5         <!-- PUT MASTHEAD CODE HERE --
     5        <span id="headerlogo">speak up</span
    66      </div> 
    77      <div id="bd"> 
    88        <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.  
    2610        </div> 
    2711      </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> 
    38</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> 
    1833    </div> 
    19   </form
    20 </div
     34  </body
     35<%include file="/footer.mako"/
  • oss/headstock/headstock/example/microblog/design/default/templates/signin.mako

    r678 r684  
    22  <body> 
    33    <div id="doc" class="yui-t3"> 
    4       <div id="hd"></div> 
     4      <div id="hd"><span id="headerlogo">speak up</span></div> 
    55      <div id="bd"> 
    66        <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! 
    310 
    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>   
    613 
    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"/>