skip to Main Content

Login to apache server using a web page

I have this code right here: <html> <body style="color:white;background-color:#222222"> <center> <br> <input type="text" id="username"> Username</input> <br> <input type="text" id="password"> Password</input> <br><br> <button onclick="test()">Submit</button> <p id="url"/> <script type="text/javascript"> function test(){ var userInput = document.getElementById("username").value; var userPass = document.getElementById("password").value; document.getElementById("url").innerHTML = encodeURI('http://'+userInput+':'+userPass+'@'+window.location.hostname+':81/Home/');…

VIEW QUESTION

Blank admin page on Magento 2.3.0 CE in localhost

I have installed Magento 2.3 on my local-machine, installation goes fine. I can access my store at localhost/magento. I tried to access my admin page localhost/magento/admin_pogi but it gives me a blank page and redirected to the url http://localhost/magento/admin_pogi/admin/index/index/key/a062e79f617010c42b07d662103d5142cd9bbe86314fb54da3e4cb5542b11eee/. What…

VIEW QUESTION

Handle Bootstrap dropdown event in jQuery-Twitter bootstrap

I have markup for twitter bootstrap dropdown like below <div class="dropdown" style="width: 300px !important;"> <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown"> Source </button> <div class="dropdown-menu" id="SelectMe"> <a class="dropdown-item" href="#">CLE</a> <a class="dropdown-item" href="#">SQL</a> <a class="dropdown-item" href="#">FFILE</a> <a class="dropdown-item" href="#">SampleAPI</a> </div> </div> Now,…

VIEW QUESTION
Back To Top
Search