1 | # INCLUDE forum_top # | 1 | # INCLUDE forum_top # |
2 | 2 | ||
3 | <script> | 3 | <script> |
4 | <!-- | 4 | <!-- |
5 | function check_form_move(){ | 5 | function check_form_move(){ |
6 | if(document.getElementById('to').value == "") { | 6 | if(document.getElementById('to').value == "") { |
7 | alert("{L_SELECT_SUBCAT}"); | 7 | alert("{L_SELECT_SUBCAT}"); |
8 | return false; | 8 | return false; |
9 | } | 9 | } |
10 | return true; | 10 | return true; |
11 | } | 11 | } |
12 | --> | 12 | --> |
13 | </script> | 13 | </script> |
14 | 14 | ||
15 | <article itemscope="itemscope" itemtype="http://schema.org/Creativework" id="article-forum-move"> | 15 | <article itemscope="itemscope" itemtype="http://schema.org/Creativework" id="article-forum-move" class="forum-contents"> |
16 | <header> | 16 | <header> |
17 | <h2>• {U_FORUM_CAT} » {U_TITLE_T}</h2> | 17 | <h2><a href="{U_FORUM_CAT}">{FORUM_CAT}</a> <i class="fa fa-angle-double-right" aria-hidden="true"></i> <a href="{U_TITLE_T}">{TITLE_T}</a></h2> |
18 | </header> | 18 | </header> |
19 | 19 | ||
20 | <div class="content"> | 20 | <div class="content"> |
21 | <form method="post" action="move.php" onsubmit="javascript:return check_form_move();" class="fieldset-content"> | 21 | <form method="post" action="move.php" onsubmit="javascript:return check_form_move();" class="fieldset-content"> |
22 | <fieldset> | 22 | <fieldset> |
23 | <legend>{L_MOVE_SUBJECT} : {TITLE}</legend> | 23 | <legend>{L_MOVE_SUBJECT} : {TITLE}</legend> |
24 | <div class="form-element"> | 24 | <div class="form-element"> |
25 | <label for="to">{L_CAT}</label> | 25 | <label for="to">{L_CAT}</label> |
26 | <div class="form-field"><label> | 26 | <div class="form-field"><label> |
27 | <select id="to" name="to"> | 27 | <select id="to" name="to"> |
28 | {CATEGORIES} | 28 | {CATEGORIES} |
29 | </select> | 29 | </select> |
30 | </label></div> | 30 | </label></div> |
31 | </div> | 31 | </div> |
32 | </fieldset> | 32 | </fieldset> |
33 | 33 | ||
34 | <fieldset class="fieldset-submit"> | 34 | <fieldset class="fieldset-submit"> |
35 | <legend>{L_SUBMIT}</legend> | 35 | <legend>{L_SUBMIT}</legend> |
36 | <input type="hidden" name="id" value="{ID}"> | 36 | <input type="hidden" name="id" value="{ID}"> |
37 | <input type="hidden" name="token" value="{TOKEN}"> | 37 | <input type="hidden" name="token" value="{TOKEN}"> |
38 | <button type="submit" name="submit" value="true" class="submit">{L_SUBMIT}</button> | 38 | <button type="submit" name="submit" value="true" class="submit">{L_SUBMIT}</button> |
39 | </fieldset> | 39 | </fieldset> |
40 | </form> | 40 | </form> |
41 | </div> | 41 | </div> |
42 | <footer>• {U_FORUM_CAT} » {U_TITLE_T}</footer> | 42 | <footer><a href="{U_FORUM_CAT}">{FORUM_CAT}</a> <i class="fa fa-angle-double-right" aria-hidden="true"></i> <a href="{U_TITLE_T}">{TITLE_T}</a></footer> |
43 | </article> | 43 | </article> |
44 | 44 | ||
45 | # INCLUDE forum_bottom # | 45 | # INCLUDE forum_bottom # |