mirror of
https://github.com/FranP-code/Login-Form.git
synced 2025-10-12 23:52:47 +00:00
Logica de verificacion terminada
This commit is contained in:
12
login.html
12
login.html
@@ -7,7 +7,6 @@
|
||||
<title>Log in</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link rel="stylesheet" href="normalize.css">
|
||||
<script src="./scripts/login.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header class="header-login">
|
||||
@@ -18,11 +17,14 @@
|
||||
</header>
|
||||
|
||||
<div>
|
||||
<form action="./logic/login.php" method="POST">
|
||||
<input type="text" placeholder="User" class="input-1">
|
||||
<input type="password" placeholder="Password" class="input-2">
|
||||
<input type="submit" value="Send" class="submit">
|
||||
<form action="./logic/login.php" method="POST" name="form">
|
||||
<input type="text" name="user" placeholder="User" class="input-1" required>
|
||||
<input type="password" name="password" placeholder="Password" class="input-2" required>
|
||||
<input type="submit" name="submit" value="Send" class="submit" required>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<script src="./scripts/login.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user