19.01.2021, 12:21
(19.01.2021, 11:31)[ExiTuS] schrieb: [ -> ]Jau, es geht nichts über Ordnung und Übersicht
Doch jede Auslagerung in eine Datei kostet einen weiteren HTTP-Request.
Dann dürfte ja niemand OOP arbeiten
(19.01.2021, 11:31)[ExiTuS] schrieb: [ -> ]Jau, es geht nichts über Ordnung und Übersicht
Doch jede Auslagerung in eine Datei kostet einen weiteren HTTP-Request.
<tr>
<td class="trow1" width="25%"><strong>{$login_username}</strong></td>
<td class="trow1"><input name="quick_username" id="quick_login_username" type="text" value="" class="textbox initial_focus" /></td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->password}</strong></td>
<td class="trow2"><span class="postbit_buttons"><a href="#" title="Passwort anzeigen/verstecken" class="postbit_find" onclick="ToggleInputPW()"><span></span></a></span>
<script type="text/javascript" src="https://quad-tigers.de/mybb-forum/jscripts/seepw.js"></script>
<input name="quick_password" id="quick_login_password" type="password" value="" class="textbox" /><br />
<a href="{$mybb->settings['bburl']}/member.php?action=lostpw" class="lost_password">{$lang->lost_password}</a>
</td>
</tr>
<tr>
<td class="trow1"> </td>
<td class="trow1 remember_me">
<input name="quick_remember" id="quick_login_remember" type="checkbox" value="yes" class="checkbox" checked="checked" />
<label for="quick_login_remember">{$lang->remember_me}</label>
</td>
</tr>
<tr>
<td class="trow2" colspan="2">
<div align="center"><input name="submit" type="submit" class="button" value="{$lang->login}" /></div>
</td>
</tr>
<tr>
<td width="50%" valign="top"><span class="smalltext">{$lang->password}</span><span class="postbit_buttons"><a href="#" title="Passwort anzeigen/verstecken" class="postbit_find" onclick="ToggleInputPWpw1()"><span></span></a></span></td>
<script>function ToggleInputPWpw1() { var in_pw_type = document.getElementById("password"); if (in_pw_type.type === "password") { in_pw_type.type = "text"; } else { in_pw_type.type = "password"; } }</script>
<td width="50%" valign="top"><span class="smalltext">{$lang->confirm_password}</span><span class="postbit_buttons"><a href="#" title="Passwort anzeigen/verstecken" class="postbit_find" onclick="ToggleInputPWpw2()"><span></span></a></span></td>
<script>function ToggleInputPWpw2() { var in_pw_type = document.getElementById("password2"); if (in_pw_type.type === "password") { in_pw_type.type = "text"; } else { in_pw_type.type = "password"; } }</script>
</tr>
<tr>
<td width="50%" valign="top"><input type="password" class="textbox" name="password" id="password" style="width: 100%" /></td>
<td width="50%" valign="top"><input type="password" class="textbox" name="password2" id="password2" style="width: 100%" /></td>
</tr>
<tr>
<td colspan="2" style="display: none;" id="password_status"> </td>
</tr>
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->password_required} </title>
{$headerinclude}
</head>
<body>
{$header}
<form action="{$_SERVER['REQUEST_URI']}" method="post">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" align="center" colspan="2"><strong>{$lang->password_required}</strong></td>
</tr>
<tr>
<td class="trow2" colspan="2">{$lang->forum_password_note}</td>
</tr>
<tr>
<td class="tcat" colspan="2"><strong>{$lang->enter_password_below}</strong></td>
</tr>
{$pwnote}
<tr>
<td class="trow1" align="center" colspan="2"><span class="postbit_buttons"><a href="#" title="Passwort anzeigen/verstecken" class="postbit_find" onclick="ToggleInputPW_fdpw()"><span></span></a></span><input type="password" class="textbox" name="pwverify" size="50" value="" /></td>
<script>function ToggleInputPW_fdpw() { var in_pw_type = document.getElementById("XXXXX"); if (in_pw_type.type === "password") { in_pw_type.type = "text"; } else { in_pw_type.type = "password"; } }</script>
</tr>
</table>
<br />
<div align="center"><input type="submit" class="button" name="submit" value="{$lang->verify_forum_password}" /></div>
</form>
{$footer}
</body>
</html>
<input type="password" class="textbox" name="pwverify" size="50" value="" id="forumdisplay_pw"/>
[...] var in_pw_type = document.getElementById("forumdisplay_pw"); [...]