D
DEDEX7200Pro
Hallo, ich möchte mir eine vereinfachte verknüpfung zu meinem admin center am pc herstellen und habe es mit folgendem Link versucht:
192.168.157.102 (meine Synology)/meinscript/login?loginname=USER&password=MEINPW&submit=Weiter »
Jetzt habe ich allerdings das Problem, dass das Feld Loginname mit User befüllt wird, aber Password leer bleibt und er auch nicht automatisch auf Submit drückt. Könnt ihr mir helfen?
Hier der Code für das Login-Script
So wie ich das sehe, ist es bei input type="submit" und input type="text" kein problem, sondern nur bei input type="password".
192.168.157.102 (meine Synology)/meinscript/login?loginname=USER&password=MEINPW&submit=Weiter »
Jetzt habe ich allerdings das Problem, dass das Feld Loginname mit User befüllt wird, aber Password leer bleibt und er auch nicht automatisch auf Submit drückt. Könnt ihr mir helfen?
Hier der Code für das Login-Script
Code:
<form action="/login" method="post">
<div class="container rounded_full shadowed">
<input type="hidden" name="do" value="login" />
<input type="hidden" name="goto" value="/start" />
<table class="noborder_100 form_table">
<colgroup>
<col width="100" />
<col width="200" />
<col />
</colgroup>
<tbody>
<tr>
<th>
<label for="loginname">Benutzername</label>
</th>
<td>
<input type="text" name="loginname" value="" size="20" maxlength="50"
class="text rounded_full_small" id="loginname" tabindex="1" />
</td>
<td rowspan="2" style="text-align: right;">
<a href="/reset_password.php?area=service" tabindex="3">
Benutzername oder Passwort vergessen?</a>
</td>
</tr>
<tr>
<th>
<label for="password">Passwort</label>
</th>
<td>
<input type="password" name="password" value="" size="20" maxlength="25"
class="text rounded_full_small" id="password" tabindex="2" />
</td>
</tr>
</tbody>
</table>
</div>
<div class="text_right" style="padding: 5px; margin: 5px 0;">
<input type="submit" value="Weiter »" class="button_submit rounded_full_small" />
</div>
</form>
So wie ich das sehe, ist es bei input type="submit" und input type="text" kein problem, sondern nur bei input type="password".