• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Question Trying to make my own login page which ive made, now i just need to link it to the plesk admin login thing.

Cjshost

New Pleskian
Server operating system version
Windows Server 2012
Plesk version and microupdate number
Plesk Obsidian v18.0.46_build20220920.14
Hi there, could someone help me please!

I am trying to make my own login page which I have done, but i cannot seem to figure out now to connect it so it loggs me into my plesk account instead of redirecting me yo the normal Plesk login page. My code is underneath.
<form id="form-login" method="post" action="https://""mydomain.com"":8443">
<div class="form-group" id="loginSection">
<label class="form-label" for="login_name">Username:</label>
<input type="username" class="form-control" id="login_name" name="username" value="">
</div>
<div class="form-group">
<label class="form-label" for="passwd">Password</label>
<input type="password" class="form-control" id="passwd" name="passwd">
</div>
<div class="form-group d-flex">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="input-remember" name="remember" value="1" checked>
<label class="form-check-label" for="input-remember">Remember me</label>
</div>
<a href="forgot_password.html" class="form-meta mt-0 ms-auto">Forgot password?</a>
</div>
<div class="form-actions">
<button class="btn btn-primary btn-block" type="submit" name="send" data-action="log-in">Log In</button>
</div>
<input type="hidden" name="forgery_protection_token" value="my plesk admin api key" action="submit">
<input name="success_redirect_url" type="hidden" value="">
</form>

Any help would be greatly appreciated.
 
Back
Top