Form

Form


<link rel="preconnect" href="https://fonts.gstatic.com"><link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap" rel="stylesheet">

<SCRIPT LANGUAGE="JavaScript"> function ShowPassword(){ if(document.getElementById("password").value) { document.getElementById("password").type="text"; document.getElementById("show").style.display="none"; document.getElementById("hide").style.display="inline"; }} function HidePassword(){ if(document.getElementById("password").type == "text") { document.getElementById("password").type="password" document.getElementById("show").style.display="inline"; document.getElementById("hide").style.display="none"; }}

function Login(){var done=0;var username=document.getElementById("username").value;

var password=document.getElementById("password").value;

</SCRIPT><style>

#forgot {

Color: yellow;

Margin-bottom: 40px;

margin-left: 20px;

Font-size: 25px;

}

*{ margin: 0; padding: 0; outline: 0; font-family: 'Roboto Slab', srif;}

h2, h3 {text-align: center;}

body{ height: 100vh; background-image: url(https://i.ibb.co/CHz609N/20210326-124843.png) !important; background-size: cover !important; background-position: center; background-repeat: no-repeat !important;}

#form { position: absolute;left: 50%; top: 50%;transform: translate(-50%,-50%); padding: 40px 40px; width: 800px; height: 650px;Border-radius: 40px; background-color: rgba(0,0,0,.7); box-shadow: 0 0 10px rgba(255,255,255,.3); Border: 10px solid #2979ff; } h1 { text-align: center; color: #fafafa; margin-bottom: 30px !important; text-transform: uppercase; border-bottom: 4px dotted #2979ff; font-size: 60px; padding-bottom: 10px; } #tek { text-align: left; color: #90caf9; font-size: 30px; margin-left: 20px; } #password { width: 80%; padding: 8px 10px; margin-bottom: 45px; border: none; background-color: transparent; border-bottom: 2px solid #2979ff; color: #fff; font-size: 35px; } #username { width: calc(100% - 20px); padding: 8px 10px; margin-bottom: 45px; border: none; background-color: transparent; border-bottom: 2px solid #2979ff; color: #fff; font-size: 35px; } #klik { width: 100%; padding: 10px 0; border: none; background-color:#2979ff; font-size: 60px; Border-radius: 30px; color: #fafafa; margin-bottom: 30px;}#klik:hover{ opacity: 85% border: none; background-color:#fafafa; font-size: 60px; color: #2979ff;}#ppesan {color: yellow;font-size: 25px; text-align: left !important;}

#show, #hide{width: 15%;font-size: 35px;padding: 10px;margin-left: 10px;background-color: cyan;} </style>

<div id="divform"><form name="log-in" id="form">

<h1 id="h1">Login</h1><p id="tek">Username:</p></br>

<input type="text" name="username" id="username" required></br>

<p id="tek">Password:</p></br>

<input type="password" name="password"id="password" required>

<input type="button" name="submit" value="Show" id="show" onclick="ShowPassword()"> <input type="button" style="display:none" id="hide" value="Hide" onclick="HidePassword()"><a href=""><p id="forgot">Forgot your username or password?</p></a><input type="submit" value="Log in" onClick="Login()"id="klik"> <br/><br/>

</div>


Report Page