• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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