Laravel Dynamic Application Deployment in Heroku Not Working

Viewed 14

I have hosted my Laravel website in Heroku platform for test
website : https://ipd-kiu.herokuapp.com/

I have built a login system here for an institute

https://ipd-kiu.herokuapp.com/login

When I try to log in via login form, I found an error

The information you’re about to submit is not secure Because this form is being submitted using a connection that’s not secure, your information will be visible to others.

419 PAGE EXPIRED

Please help me to fix the issue .

Login code form is below:

<form action="http://ipd-kiu.herokuapp.com/loginprocess" method="POST">
    
    
    <div class="form-group row">
        <label for="email_address" class="col-md-4 col-form-label text-md-right">E-Mail Address</label>
        <div class="col-md-6">
            <input  type="text" id="email_address" class="form-control" name="email"  required >
                    </div>
    </div>

    <div class="form-group row">
        <label for="password" class="col-md-4 col-form-label text-md-right">Password</label>
        <div class="col-md-6">
            <input type="password" id="password" class="form-control" name="password" required>
                    </div>
    </div>

    

    <div class="col-md-6 offset-md-4">
        <button type="submit" class="btn btn-primary">
            Login
        </button>
    </div> --}}

</form>
0 Answers
Related