0byt3m1n1
Path:
C:
/
wamp64
/
www
/
WaterCat
/
[
Home
]
File: reg.php
<!doctype html> <html lang="en"> <head> <link rel="stylesheet" type="text/css" href="styles.css"> <link rel="stylesheet" type="text/css" href="nav.css"> </head> <body class="bg-white" background="assets/images/slider/s1.jpg" alt=""> <div class="topnav"> <a class="active" href="indexnew.php">Home</a> <a href="#news">News</a> <a href="contact.php">Contact</a> <a href="about.html">About</a> </div> <style> body { background: url("assets/images/slider/s1.jpg") no-repeat center center fixed; background-size: cover; margin: 0; padding: 0; font-family: Arial, sans-serif; } #f { margin: 20px auto; padding: 20px; background-color: rgba(255, 255, 255, 0.8); border-radius: 10px; width: 300px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } #form { text-align: center; } label { display: block; margin-bottom: 8px; font-weight: bold; } input[type="text"], input[type="email"], input[type="password"], textarea { width: 100%; padding: 10px; margin-bottom: 16px; box-sizing: border-box; border: 1px solid #ccc; border-radius: 4px; } input[type="submit"] { background-color: #4CAF50; color: white; padding: 12px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; } input[type="submit"]:hover { background-color: #45a049; } p { text-align: center; } footer { background-color:#508ab3; /* Background color of the footer */ color: #fff; /* Text color */ padding: 20px 0; /* Padding around the footer content */ } .footer-content { display: flex; justify-content: space-between; align-items: flex-start; max-width: 1200px; /* Maximum width of the footer content */ margin: 0 auto; /* Center the footer content horizontally */ } .logo img { max-width: 100px; /* Adjust the maximum width of the logo */ height: auto; /* Maintain aspect ratio */ } .institution-name, .contact-info { flex: 1; padding: 0 90px; /* Spacing between elements */ } .contact-info h3, .institution-name h3 { margin-top: 0; /* Remove margin from the top of the headings */ } .copyright { text-align: center; /* Center the copyright text */ margin-top: 20px; /* Spacing between content and copyright */ } .copyright p { margin: 0; /* Remove margin from the paragraph */ } </style> </head> <body class="bg-white"> <div id="f"> <div id="form"> <h3><u>REGISTRATION PAGE</u></h3> <form method="GET" action="insert.php"> <label for="name">Name</label> <input type="text" id="name" name="name" required> <label for="email">Email</label> <input type="email" id="email" name="email" required> <label for="address">Address</label> <textarea rows="2" id="address" name="address" required></textarea> <label for="password">Password</label> <input type="password" id="password" name="password" required> <label for="confirmpassword">Confirm Password</label> <input type="password" id="confirmpassword" name="confirmpassword" required> <input type="submit" name='submit' value="SUBMIT"> </form> </div> <br><br> <p>If already registered? <a href="log2.php">Sign in</a></p> </div> <footer> <div class="footer-content"> <div class="logo"> <img class="footer-logo" alt src="assets/images/logooo.jpg"> </div> <div class="institution-name"> <h3>Centre for Water Resources Development and Management Kunnamangalam, </h3> <p>Kozhikode-673 571</p> <p>Kerala , India</p> </div> <div class="contact-info"> <h3>Contact Information</h3> <p>Email: ed@cwrdm.org</p> <p>Phone: (91) 495 2351800,2351801, 2351803, 2351804<br> Fax: (91) 495 2351808</p> </div> </div> <div class="copyright"> <p>© 2024 CWRDM. All rights reserved.</p> </div> </footer> </body> </html>