diff options
author | friendica <info@friendica.com> | 2012-10-25 18:42:42 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-25 18:42:42 -0700 |
commit | 3b394ea43fd3bc011f98a9160a8b408283f97ebc (patch) | |
tree | da7fe5fc9089752af8467937355991b45c345776 /view | |
parent | ebb75340ec1b152eab0319f5811711ad192a2802 (diff) | |
download | volse-hubzilla-3b394ea43fd3bc011f98a9160a8b408283f97ebc.tar.gz volse-hubzilla-3b394ea43fd3bc011f98a9160a8b408283f97ebc.tar.bz2 volse-hubzilla-3b394ea43fd3bc011f98a9160a8b408283f97ebc.zip |
comments sort of working again but now need to fix the threading which was ported when it was only half working
Diffstat (limited to 'view')
-rw-r--r-- | view/css/mod_register.css (renamed from view/css/mod_zregister.css) | 10 | ||||
-rw-r--r-- | view/js/mod_register.js | 29 | ||||
-rw-r--r-- | view/js/mod_zregister.js | 29 | ||||
-rw-r--r-- | view/php/mod_register.php (renamed from view/php/mod_zregister.php) | 0 | ||||
-rw-r--r-- | view/theme/duepuntozero/css/style.css | 193 | ||||
-rw-r--r-- | view/tpl/register.tpl | 80 | ||||
-rw-r--r-- | view/tpl/wall_thread.tpl | 71 | ||||
-rw-r--r-- | view/tpl/zregister.tpl | 45 |
8 files changed, 273 insertions, 184 deletions
diff --git a/view/css/mod_zregister.css b/view/css/mod_register.css index a5bd9a5cf..581dee1a0 100644 --- a/view/css/mod_zregister.css +++ b/view/css/mod_register.css @@ -4,29 +4,29 @@ h2 { margin-top: 15%; } -#zregister-form { +#register-form { font-size: 1.4em; margin-left: 15%; margin-top: 5%; } -.zregister-label { +.register-label { float: left; width: 275px; } -.zregister-input { +.register-input { float: left; width: 275px; padding: 5px; } -.zregister-feedback { +.register-feedback { float: left; margin-left: 45px; } -.zregister-field-end { +.register-field-end { clear: both; margin-bottom: 20px; } diff --git a/view/js/mod_register.js b/view/js/mod_register.js new file mode 100644 index 000000000..839c91911 --- /dev/null +++ b/view/js/mod_register.js @@ -0,0 +1,29 @@ + $(document).ready(function() { + $("#register-email").blur(function() { + var zreg_email = $("#register-email").val(); + $.get("register/email_check.json?f=&email=" + encodeURIComponent(zreg_email),function(data) { + $("#register-email-feedback").html(data.message); + zFormError("#register-email-feedback",data.error); + }); + }); + $("#register-password").blur(function() { + if(($("#register-password").val()).length < 6 ) { + $("#register-password-feedback").html(aStr['pwshort']); + zFormError("#register-password-feedback",true); + } + else { + $("#register-password-feedback").html(""); + zFormError("#register-password-feedback",false); + } + }); + $("#register-password2").blur(function() { + if($("#register-password").val() != $("#register-password2").val()) { + $("#register-password2-feedback").html(aStr['pwnomatch']); + zFormError("#register-password2-feedback",true); + } + else { + $("#register-password2-feedback").html(""); + zFormError("#register-password2-feedback",false); + } + }); + }); diff --git a/view/js/mod_zregister.js b/view/js/mod_zregister.js deleted file mode 100644 index 6dcb4058c..000000000 --- a/view/js/mod_zregister.js +++ /dev/null @@ -1,29 +0,0 @@ - $(document).ready(function() { - $("#zregister-email").blur(function() { - var zreg_email = $("#zregister-email").val(); - $.get("zregister/email_check.json?f=&email=" + encodeURIComponent(zreg_email),function(data) { - $("#zregister-email-feedback").html(data.message); - zFormError("#zregister-email-feedback",data.error); - }); - }); - $("#zregister-password").blur(function() { - if(($("#zregister-password").val()).length < 6 ) { - $("#zregister-password-feedback").html(aStr['pwshort']); - zFormError("#zregister-password-feedback",true); - } - else { - $("#zregister-password-feedback").html(""); - zFormError("#zregister-password-feedback",false); - } - }); - $("#zregister-password2").blur(function() { - if($("#zregister-password").val() != $("#zregister-password2").val()) { - $("#zregister-password2-feedback").html(aStr['pwnomatch']); - zFormError("#zregister-password2-feedback",true); - } - else { - $("#zregister-password2-feedback").html(""); - zFormError("#zregister-password2-feedback",false); - } - }); - }); diff --git a/view/php/mod_zregister.php b/view/php/mod_register.php index e7709cbd8..e7709cbd8 100644 --- a/view/php/mod_zregister.php +++ b/view/php/mod_register.php diff --git a/view/theme/duepuntozero/css/style.css b/view/theme/duepuntozero/css/style.css index 0c051487e..94092bbf0 100644 --- a/view/theme/duepuntozero/css/style.css +++ b/view/theme/duepuntozero/css/style.css @@ -964,10 +964,8 @@ input#dfrn-url { .wall-item-content-wrapper { margin-top: 10px; - border: 1px solid #CCC; + border-left: 1px solid #e0e0e0; position: relative; - -moz-border-radius: 3px; - border-radius: 3px; } .tread-wrapper .tread-wrapper { @@ -975,8 +973,9 @@ input#dfrn-url { } .wall-item-content-wrapper.comment { -# margin-left: 50px; - background: #EEEEEE; + background: #ffffff; + border-left: 1px solid #e0e0e0; + margin-left: 50px; } .wall-item-like.comment, .wall-item-dislike.comment { @@ -1210,12 +1209,12 @@ input#dfrn-url { .comment-edit-wrapper { margin-top: 15px; - background: #f3f3f3; + background: #ffffff; margin-left: 50px; } .comment-wwedit-wrapper { - background: #f3f3f3; + background: #ffffff; } .comment-edit-photo { @@ -1235,11 +1234,30 @@ input#dfrn-url { .comment-edit-text-empty, .comment-edit-text-full { float: left; margin-top: 10px; - -moz-border-radius: 3px; - border-radius: 3px; - border: 1px solid #cccccc; + border-left: 1px solid #e0e0e0; padding: 3px 1px 1px 3px; } + +.comment-edit-text-empty { + color: gray; + height: 1.5em; + width: 175px; + overflow: auto; + margin-bottom: 10px; +} + +.comment-wwedit-wrapper.threaded > .comment-edit-form > .comment-edit-text-empty { + height: 1.5em; +} + +.comment-edit-text-full { + color: black; + height: 150px; + width: 350px; + overflow: auto; +} + + .comment-edit-text-end { clear: both; } @@ -1678,6 +1696,12 @@ input#dfrn-url { width: 587px; } +#profile-jot-text_parent, .mceLayout { + border-radius: 3px; + -moz-border-radius: 3px; + box-shadow: 4px 4px 3px 0 #444444; +} + #profile-jot-text { height: 20px; color:#cccccc; @@ -1686,6 +1710,137 @@ input#dfrn-url { -moz-border-radius: 3px; border-radius: 3px; } +#profile-jot-text:hover { + color: #000000; +} + +.wall-item-photo, .photo, .contact-block-img, .my-comment-photo { + border-radius: 3px; + -moz-border-radius: 3px; + box-shadow: 4px 4px 3px 0 #444444; +} + + +#datebrowse-sidebar select { + margin-left: 25px; + border-radius: 3px; + -moz-border-radius: 3px; + opacity: 0.3; + filter:alpha(opacity=30); +} + +#datebrowse-sidebar select:hover { + opacity: 1.0; + filter:alpha(opacity=100); +} + +#posted-date-selector { + margin-left: 30px !important; + margin-top: 5px !important; + margin-right: 0px !important; + margin-bottom: 0px !important; +} + +#posted-date-selector:hover { + box-shadow: 4px 4px 3px 0 #444444; + margin-left: 25px !important; + margin-top: 0px !important; + margin-right: 5px !important; + margin-bottom: 5px !important; + +} + +#side-bar-photos-albums { + margin-top: 15px; +} + +#side-bar-photos-albums ul { + list-style: none; +} + +.contact-entry-photo img, .profile-match-photo img, #photo-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo, .profile-jot-text, .group-selected, .nets-selected, .fileas-selected, #profile-jot-submit, .categories-selected { + border-radius: 3px; + -moz-border-radius: 3px; + box-shadow: 4px 4px 3px 0 #444444; +} +.settings-widget .selected { + border-radius: 3px; + -moz-border-radius: 3px; + box-shadow: 4px 4px 3px 0 #444444; +} + +#sidebar-page-list .label { + margin-left: 5px; +} + + +.photo { + border: 1px solid #AAAAAA; +} + +.photo-top-photo, .photo-album-photo { + padding: 10px; + max-width: 300px; + border: 1px solid #888888; +} + +.rotleft1 { +-webkit-transform: rotate(-1deg); +-moz-transform: rotate(-1deg); +-ms-transform: rotate(-1deg); +-o-transform: rotate(-1deg); +} + +.rotleft2 { +-webkit-transform: rotate(-2deg); +-moz-transform: rotate(-2deg); +-ms-transform: rotate(-2deg); +-o-transform: rotate(-2deg); +} + +.rotleft3 { +-webkit-transform: rotate(-3deg); +-moz-transform: rotate(-3deg); +-ms-transform: rotate(-3deg); +-o-transform: rotate(-3deg); +} + +.rotleft4 { +-webkit-transform: rotate(-4deg); +-moz-transform: rotate(-4deg); +-ms-transform: rotate(-4deg); +-o-transform: rotate(-4deg); +} + + +.rotright1 { +-webkit-transform: rotate(1deg); +-moz-transform: rotate(1deg); +-ms-transform: rotate(1deg); +-o-transform: rotate(1deg); +} + +.rotright2 { +-webkit-transform: rotate(2deg); +-moz-transform: rotate(2deg); +-ms-transform: rotate(2deg); +-o-transform: rotate(2deg); +} + +.rotright3 { +-webkit-transform: rotate(3deg); +-moz-transform: rotate(3deg); +-ms-transform: rotate(3deg); +-o-transform: rotate(3deg); +} + +.rotright4 { +-webkit-transform: rotate(4deg); +-moz-transform: rotate(4deg); +-ms-transform: rotate(4deg); +-o-transform: rotate(4deg); +} + /** acl **/ @@ -1793,24 +1948,6 @@ input#dfrn-url { /** /acl **/ -.comment-edit-text-empty { - color: gray; - height: 5em; - width: 175px; - overflow: auto; - margin-bottom: 10px; -} - -.comment-wwedit-wrapper.threaded > .comment-edit-form > .comment-edit-text-empty { - height: 1.5em; -} - -.comment-edit-text-full { - color: black; - height: 150px; - width: 350px; - overflow: auto; -} #group-new-submit-wrapper { margin-top: 30px; diff --git a/view/tpl/register.tpl b/view/tpl/register.tpl index 244762c4b..4b565718d 100644 --- a/view/tpl/register.tpl +++ b/view/tpl/register.tpl @@ -1,57 +1,45 @@ -<h3>$regtitle</h3> +<h2>$title</h2> <form action="register" method="post" id="register-form"> - <input type="hidden" name="photo" value="$photo" /> - - $registertext - - <p id="register-realpeople">$realpeople</p> - - <p id="register-fill-desc">$fillwith</p> - <p id="register-fill-ext">$fillext</p> +{{ if $registertext }} +<div id="register-desc" class="descriptive-paragraph">$registertext</div> +{{ endif }} {{ if $invitations }} - <p id="register-invite-desc">$invite_desc</p> - <div id="register-invite-wrapper" > - <label for="register-invite" id="label-register-invite" >$invite_label</label> - <input type="text" maxlength="60" size="32" name="invite_id" id="register-invite" value="$invite_id" > - </div> - <div id="register-name-end" ></div> + <label for="register-invite" id="label-register-invite" class="register-label">$label_invite</label> + <input type="text" maxlength="72" size="32" name="invite_code" id="register-invite" class="register-input" value="$invite_code" /> + <div id="register-invite-feedback" class="register-feedback"></div> + <div id="register-invite-end" class="register-field-end"></div> {{ endif }} + <label for="register-email" id="label-register-email" class="register-label" >$label_email</label> + <input type="text" maxlength="72" size="32" name="email" id="register-email" class="register-input" value="$email" /> + <div id="register-email-feedback" class="register-feedback"></div> + <div id="register-email-end" class="register-field-end"></div> + + <label for="register-password" id="label-register-password" class="register-label" >$label_pass1</label> + <input type="password" maxlength="72" size="32" name="password" id="register-password" class="register-input" value="$pass1" /> + <div id="register-password-feedback" class="register-feedback"></div> + <div id="register-password-end" class="register-field-end"></div> + + <label for="register-password2" id="label-register-password2" class="register-label" >$label_pass2</label> + <input type="password" maxlength="72" size="32" name="password2" id="register-password2" class="register-input" value="$pass2" /> + <div id="register-password2-feedback" class="register-feedback"></div> + <div id="register-password2-end" class="register-field-end"></div> + + {{ if $enable_tos }} + <input type="checkbox" name="tos" id="register-tos" value="1" /> + <label for="register-tos" id="label-register-tos">$label_tos</label> + <div id="register-tos-feedback" class="register-feedback"></div> + <div id="register-tos-end" class="register-field-end"></div> + {{ else }} + <input type="hidden" name="tos" value="1" /> + {{ endif }} + + <input type="submit" name="submit" id="register-submit-button" value="$submit" /> + <div id="register-submit-end" class="register-field-end"></div> - <div id="register-name-wrapper" > - <label for="register-name" id="label-register-name" >$namelabel</label> - <input type="text" maxlength="60" size="32" name="username" id="register-name" value="$username" > - </div> - <div id="register-name-end" ></div> - - - <div id="register-email-wrapper" > - <label for="register-email" id="label-register-email" >$addrlabel</label> - <input type="text" maxlength="60" size="32" name="email" id="register-email" value="$email" > - </div> - <div id="register-email-end" ></div> - - <p id="register-nickname-desc" >$nickdesc</p> - - <div id="register-nickname-wrapper" > - <label for="register-nickname" id="label-register-nickname" >$nicklabel</label> - <input type="text" maxlength="60" size="32" name="nickname" id="register-nickname" value="$nickname" ><div id="register-sitename">@$sitename</div> - </div> - <div id="register-nickname-end" ></div> - - $publish - - <div id="register-submit-wrapper"> - <input type="submit" name="submit" id="register-submit-button" value="$regbutt" /> - </div> - <div id="register-submit-end" ></div> </form> - -$license - - diff --git a/view/tpl/wall_thread.tpl b/view/tpl/wall_thread.tpl index ade8264fa..a67334e33 100644 --- a/view/tpl/wall_thread.tpl +++ b/view/tpl/wall_thread.tpl @@ -6,38 +6,40 @@ {{endif}} <div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel"> <a name="$item.id" ></a> -{{ if $item.threaded }} -<div class="wall-item-outside-wrapper $item.indent$item.previewing threaded" id="wall-item-outside-wrapper-$item.id" > -{{ else }} -<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" > -{{ endif }} +<div class="wall-item-outside-wrapper $item.indent$item.previewing{{ if $item.owner_url }} wallwall{{ endif }}" id="wall-item-outside-wrapper-$item.id" > <div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" > - <div class="wall-item-info" id="wall-item-info-$item.id"> - <div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id" - onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')" - onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)"> - <a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id"> - <img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /> - </a> + <div class="wall-item-info{{ if $item.owner_url }} wallwall{{ endif }}" id="wall-item-info-$item.id"> + {{ if $item.owner_url }} + <div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" > + <a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id"> + <img src="$item.owner_photo" class="wall-item-photo$item.osparkle" id="wall-item-ownerphoto-$item.id" style="height: 80px; width: 80px;" alt="$item.owner_name" /></a> + </div> + <div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$item.wall" /></div> + {{ endif }} + <div class="wall-item-photo-wrapper{{ if $item.owner_url }} wwfrom{{ endif }}" id="wall-item-photo-wrapper-$item.id" + onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')" + onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)"> + <a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id"> + <img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a> <span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span> - <div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id"> - <ul> - $item.item_photo_menu - </ul> - </div> + <div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id"> + <ul> + $item.item_photo_menu + </ul> + </div> + </div> <div class="wall-item-photo-end"></div> <div class="wall-item-wrapper" id="wall-item-wrapper-$item.id" > {{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div> {{ else }}<div class="wall-item-lock"></div>{{ endif }} - <div class="wall-item-location" id="wall-item-location-$item.id">$item.location</div> + <div class="wall-item-location" id="wall-item-location-$item.id">$item.location</div> </div> </div> <div class="wall-item-author"> - <a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a> - <div class="wall-item-ago" id="wall-item-ago-$item.id" >$item.ago</div> - - </div> + <a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>{{ if $item.owner_url }} $item.to <a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> $item.vwall{{ endif }}<br /> + <div class="wall-item-ago" id="wall-item-ago-$item.id" title="$item.localtime">$item.ago</div> + </div> <div class="wall-item-content" id="wall-item-content-$item.id" > <div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div> <div class="wall-item-title-end"></div> @@ -47,6 +49,15 @@ <span class='tag'>$tag</span> {{ endfor }} </div> + {{ if $item.has_cats }} + <div class="categorytags"><span>$item.txt_cats {{ for $item.categories as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} + </div> + {{ endif }} + + {{ if $item.has_folders }} + <div class="filesavetags"><span>$item.txt_folders {{ for $item.folders as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} + </div> + {{ endif }} </div> </div> <div class="wall-item-tools" id="wall-item-tools-$item.id"> @@ -59,7 +70,7 @@ </div> {{ endif }} {{ if $item.plink }} - <div class="wall-item-links-wrapper"><a href="$item.plink.href" title="$item.plink.title" class="icon remote-link$item.sparkle"></a></div> + <div class="wall-item-links-wrapper"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="icon remote-link$item.sparkle"></a></div> {{ endif }} {{ if $item.edpost }} <a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a> @@ -71,39 +82,37 @@ {{ endif }} {{ if $item.filer }} <a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer"></a> - {{ endif }} + {{ endif }} + <div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" > {{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }} </div> - {{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }} + {{ if $item.drop.pagedrop }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }} <div class="wall-item-delete-end"></div> </div> - </div> + </div> <div class="wall-item-wrapper-end"></div> <div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div> <div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div> {{ if $item.threaded }} {{ if $item.comment }} - <div class="wall-item-comment-wrapper$item.indent" > + <div class="wall-item-comment-wrapper $item.indent" > $item.comment </div> {{ endif }} {{ endif }} -<div class="wall-item-outside-wrapper-end$item.indent" ></div> +<div class="wall-item-outside-wrapper-end $item.indent" ></div> </div> {{ for $item.children as $item }} {{ inc $item.template }}{{ endinc }} {{ endfor }} -{{ if $item.comment }} {{ if $item.flatten }} <div class="wall-item-comment-wrapper" > $item.comment </div> {{ endif }} -{{ endif }} </div> {{if $item.comment_lastcollapsed}}</div>{{endif}} - diff --git a/view/tpl/zregister.tpl b/view/tpl/zregister.tpl deleted file mode 100644 index 3a2c38a13..000000000 --- a/view/tpl/zregister.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<h2>$title</h2> - -<form action="zregister" method="post" id="zregister-form"> - -{{ if $registertext }} -<div id="zregister-desc" class="descriptive-paragraph">$registertext</div> -{{ endif }} - -{{ if $invitations }} - <p id="register-invite-desc">$invite_desc</p> - - <label for="zregister-invite" id="label-zregister-invite" class="zregister-label">$label_invite</label> - <input type="text" maxlength="72" size="32" name="invite_code" id="zregister-invite" class="zregister-input" value="$invite_code" /> - <div id="zregister-invite-feedback" class="zregister-feedback"></div> - <div id="zregister-invite-end" class="zregister-field-end"></div> -{{ endif }} - - <label for="zregister-email" id="label-zregister-email" class="zregister-label" >$label_email</label> - <input type="text" maxlength="72" size="32" name="email" id="zregister-email" class="zregister-input" value="$email" /> - <div id="zregister-email-feedback" class="zregister-feedback"></div> - <div id="zregister-email-end" class="zregister-field-end"></div> - - <label for="zregister-password" id="label-zregister-password" class="zregister-label" >$label_pass1</label> - <input type="password" maxlength="72" size="32" name="password" id="zregister-password" class="zregister-input" value="$pass1" /> - <div id="zregister-password-feedback" class="zregister-feedback"></div> - <div id="zregister-password-end" class="zregister-field-end"></div> - - <label for="zregister-password2" id="label-zregister-password2" class="zregister-label" >$label_pass2</label> - <input type="password" maxlength="72" size="32" name="password2" id="zregister-password2" class="zregister-input" value="$pass2" /> - <div id="zregister-password2-feedback" class="zregister-feedback"></div> - <div id="zregister-password2-end" class="zregister-field-end"></div> - - {{ if $enable_tos }} - <input type="checkbox" name="tos" id="zregister-tos" value="1" /> - <label for="zregister-tos" id="label-zregister-tos">$label_tos</label> - <div id="zregister-tos-feedback" class="zregister-feedback"></div> - <div id="zregister-tos-end" class="zregister-field-end"></div> - {{ else }} - <input type="hidden" name="tos" value="1" /> - {{ endif }} - - <input type="submit" name="submit" id="zregister-submit-button" value="$submit" /> - <div id="zregister-submit-end" class="zregister-field-end"></div> - -</form> |