0% found this document useful (0 votes)
17 views

HTML Code

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views

HTML Code

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>

<html>

<head>

<title>Login Form</title>

<style>

/* CSS styling for the form */

Body {

Font-family: Arial, sans-serif;

.container {

Max-width: 400px;

Margin: 0 auto;

Padding: 20px;

Border: 1px solid #ccc;

Border-radius: 5px;

H2 {

Text-align: center;

Label {

Display: block;

Margin-bottom: 10px;

Input[type=”text”], input[type=”password”] {

Width: 100%;

Padding: 10px;

Border-radius: 3px;

Border: 1px solid #ccc;

Input[type=”submit”] {

Width: 100%;
Padding: 10px;

Border-radius: 3px;

Border: none;

Background-color: #0099FF;

Color: #fff;

Cursor: pointer;

</style>

</head>

<body>

<div class=”container”>

<h2>Login Form</h2>

<form method=”POST” action=”login.php”> <!—Replace “login.php” with the appropriate PHP


file name 

<label for=”uname”>Username</label>

<input type=”text” id=”uname” name=”uname” required>

<label for=”pword”>Password</label>

<input type=”password” id=”pword” name=”pword” required>

<input type=”submit” value=”Login”>

</form>

</div>

</body>

</html>

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy