Further HTML5-fication, plus fix some case consistency mismatches.

This commit is contained in:
Uriel 2009-07-28 20:49:53 +02:00
parent 8a30cf0b68
commit f6faca3ea9
6 changed files with 26 additions and 26 deletions

View file

@ -31,7 +31,7 @@ fn bridge_init {
ll_add handlers_body_foot template apps/bridge/foot.tpl
}
if not if(~ $REQUEST_METHOD GET)
ll_add handlers_body_foot echo '<hr /><p>To post a comment you need to <a href="/_users/login">login</a> first.</p>'
ll_add handlers_body_foot echo '<hr><p>To post a comment you need to <a href="/_users/login">login</a> first.</p>'
}
}

View file

@ -1,4 +1,4 @@
<hr />
<hr>
<h2>Comments</h2>
% for(c in `{ls $comments_dir/}) {
@ -6,8 +6,8 @@
<div class="comment">
<h5>By: <i>%(`{cat $c/user}%)</i></b> (%(`{cat $c/posted}%))
</h5>
% cat $c/body | escape_html | sed 's,$,<br />,'
<hr /></div>
% cat $c/body | escape_html | sed 's,$,<br>,'
<hr></div>
% }
% }

View file

@ -1,22 +1,22 @@
<hr />
<hr>
% notices_handler
<form action="" method="post">
<textarea name="comment_text" id="comment_text" cols="80" rows="16">%($"saved_comment_text%)</textarea>
<br />
<input type="submit" name="bridge_post" value="Post a comment" />
<br>
<input type="submit" name="bridge_post" value="Post a comment">
% if(~ $#logged_user 0 && ! ~ $#allow_new_user_comments 0) {
<label>New user name:
<input type="text" name="comment_user" value="%($"post_arg_comment_user%)" />
<input type="text" name="comment_user" value="%($"post_arg_comment_user%)">
</label>
<label>Password:
<input type="password" name="comment_passwd" value="" />
<input type="password" name="comment_passwd" value="">
</label>
<label>Repeat password:
<input type="password" name="comment_passwd2" value="" />
<input type="password" name="comment_passwd2" value="">
</label>
<div style="font-size: 70%">
Enter your desired user name/password and after your comment has been reviewed by an admin it will be posted and your account will be enabled. If you are already registered please <a href="/_users/login">login</a> before posting.