Skip to content

Instantly share code, notes, and snippets.

Created January 15, 2017 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2a9871381cb3ea400e72071d14dae766 to your computer and use it in GitHub Desktop.
Save anonymous/2a9871381cb3ea400e72071d14dae766 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<title>Subscribe and unsubscribe script by HackerRahul</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<body class= "w3-light-gray">
<div class= "w3-container w3-blue">
<h1>Subscribe & Unsubscribe system</h1>
</div>
<div class="w3-container">
<div class= "w3-display-container" style="padding-top:450px;">
<div class="w3-display-middle w3-indigo w3-padding-left w3-padding-right w3-card-8 " style="width:300px;">
<h1 class="w3-bottombar w3-center">Subscribe Here!</h1>
<form method="post" class= "w3-padding-bottom" action="subscribe.php">
<label>FullName:</label>
<input class="w3-input" type="text" name="name" placeholder="FirstName" required>
<label>Email:</label>
<input class="w3-input" type="email" name="email" placeholder="Email addres" required><br>
<input type="submit" name="submit" class="w3-btn w3-green w3-round">
<p><center>We won't spam you! just try it once!</center></p>
</form>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment