]> git.mxchange.org Git - mailer.git/blobdiff - templates/de/html/member/member_book_surfbar_static.tpl
Extension ext-surfbar continued:
[mailer.git] / templates / de / html / member / member_book_surfbar_static.tpl
index ede62c0f329fafd404cb4c01f420808d67a453ec..951939d00a28c65d26ecb681cf882708653ee46e 100644 (file)
@@ -2,40 +2,51 @@
 {%form,formIdBook,formMethodPost=modules.php?module=login&what=book_surfbar%}
 <div class="table3 dashed" style="margin-top:10px">
        <div class="table_header bottom" style="padding-top:5px;padding-bottom:5px">
-               <strong>URL in Surfbar buchen - Statisch:</strong>
+               <strong>{--MEMBER_BOOK_SURFBAR_URL_STATIC_TITLE--}</strong>
        </div>
 
-       <div class="member_input bottom" style="padding-top:5px;padding-bottom:5px">
-               URL eingeben: <input type="text" class="form_field" id="url" name="url" size="20" maxlength="255" value="http://" />
-       </div>
+       <fieldset id="url_data">
+               <legend>{--MEMBER_BOOK_SURFBAR_URL_DATA_LEGEND--}</legend>
 
-       <div class="member_input" style="padding-top:5px;padding-bottom:5px">
-               Soll die Anzahl Aufrufe begrenzt werden?<br />
-               <input type="radio" id="limited_no" onclick="return focusLimitedNo()" name="limited" value="N" checked="checked" /> {--NO--}
-               <input type="radio" id="limited_yes" onclick="return focusLimitedYes()" name="limited" value="Y" /> {--YES--}
-       </div>
+               <div class="member_input" style="padding-top:5px;padding-bottom:5px">
+                       <label class="member_label" for="url">{--MEMBER_BOOK_SURFBAR_URL_ENTER_URL--}</label>
+                       <input type="text" class="form_field" id="url" name="url" size="20" maxlength="255" value="http://" />
+               </div>
 
-       <div class="member_input bottom" style="padding-top:5px;padding-bottom:5px">
-               Aufrufe begrenzen auf: <input type="text" class="form_field" onchange="return changeLimited()" onclick="return focusLimit()" onblur="return blurLimit()" id="limit" name="limit" size="7" maxlength="20" value="-" />
-       </div>
+               <div class="member_input" style="padding-top:5px;padding-bottom:5px">
+                       <label class="member_label" for="limited">{--MEMBER_SURFBAR_URL_LIMITED--}</label>
+                       <input type="radio" id="limited_no" name="limited" value="N" checked="checked" /> {--NO--}
+                       <input type="radio" id="limited_yes" name="limited" value="Y" /> {--YES--}
+               </div>
+
+               <div class="member_input" style="padding-top:5px;padding-bottom:5px">
+                       <label class="member_label" for="limit">{--MEMBER_SURFBAR_URL_ENTER_LIMIT--}</label>
+                       <input type="text" class="form_field" id="limit" name="limit" size="7" maxlength="20" value="-" />
+               </div>
 
-       <div class="member_input" style="padding-top:5px;padding-bottom:5px">
-               Jeder Seiten-Aufruf durch andere Mitglieder kostet Ihnen <span
-                class="surfbar_points">{%pipe,determineSurfbarCosts,translateComma=true%}{?POINTS?}</span>. Surfen Sie mit
-               der Surfbar erhalten Sie <span class="surfbar_points">{%pipe,determineSurfbarReward,translateComma=true%}
-               {?POINTS?}</span> auf Ihr Konto gutgeschrieben.<br />
-               <br />
-               Sie haben bereits <strong>{%pipe,getSurfbarTotalUserUrls,translateComma%}</strong> von maximal
-               <strong>{%config,translateComma=surfbar_max_order%}</strong> erlaubten URLs gebucht.
+               <div class="member_input" style="padding-top:5px;padding-bottom:5px" align="center">
+                       <label class="member_label" for="package">{--MEMBER_SURFBAR_URL_SELECT_PACKAGE--}</legend>
+                       {%pipe,generateMemberSurfbarPackageSelectionBox%}
+               </div>
+       </fieldset>
+
+       <div style="padding-top:5px">
+               <div class="para">
+                       {--MEMBER_BOOK_SURFBAR_URL_STATIC_COSTS--}
+               </div>
+               <div class="para">
+                       {--MEMBER_BOOK_SURFBAR_URL_TOTAL_AMOUNT--}
+               </div>
        </div>
 
-       <div class="table_header top" style="padding-top:5px;padding-bottom:5px">
+       <div class="table_header top">
                <input type="reset" class="form_reset" id="reset" value="{--CLEAR_FORM--}" />
                <input type="submit" class="form_submit" name="ok" value="{--MEMBER_SURFBAR_ADD_URL_SUBMIT--}" />
        </div>
 </div>
 
 <script type="text/javascript" src="{%url=js.php?js=surfbar_member_book%}{%ext,version=surfbar%}"></script>
+
 <script type="text/javascript">
 <!--
 $('#book').submit(function() {
@@ -45,6 +56,26 @@ $('#book').submit(function() {
 $('#reset').click(function() {
        return resetForm();
 });
+
+$('#limit').click(function() {
+       return focusLimit();
+});
+
+$('#limit').blur(function() {
+       return blurLimit();
+});
+
+$('#limit').change(function() {
+       return changeLimited();
+});
+
+$('#limited_no').click(function() {
+       return focusLimitedNo();
+});
+
+$('#limited_yes').click(function() {
+       return focusLimitedYes();
+});
 //-->
 </script>