D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
markniuj
/
bazmeasar.com
/
include
/
Filename :
sign-up.php
back
Copy
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Subscriber Form</title> </head> <body> <h2>Subscribe to Our Newsletter</h2> <form action="subscribe.php" method="post"> <label for="email">Email:</label> <input type="email" name="email" id="email" required> <label for="name">Name (Optional):</label> <input type="text" name="name" id="name"> <label for="phone">Phone (Optional):</label> <input type="text" name="phone" id="phone"> <input type="submit" value="Subscribe"> </form> </body> </html>