CINXE.COM
Secret Beach Bookclub
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <link rel="icon" href="http://skiam.com/img/favicon.png"> <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"> <title>Secret Beach Bookclub</title> <link href="css/bootstrap.min.css" rel="stylesheet"> <script src="js/jquery.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery.easing.min.js"></script> <script src="js/grayscale.js"></script> <link href="css/grayscale.css" rel="stylesheet"> <!-- Custom Fonts --> <link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css"> <link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <style> input:invalid { background-color: #fdd; } .smaller { font-size:1.1em; } </style> </head> <body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top"> <!-- Navigation --> <nav class="navbar navbar-custom navbar-fixed-top" role="navigation"> <div class="container" id="top"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse"> <i class="fa fa-bars"></i> </button> <a class="navbar-brand page-scroll" href="#page-top"> <i class="fa fa-book"></i> <span class="light">Secret Beach</span> Book Club </a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse navbar-right navbar-main-collapse"> <ul class="nav navbar-nav"> <!-- Hidden li included to remove active class from about link when scrolled up past about section --> <li class="hidden"> <a href="#page-top"></a> </li> <li> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <!-- Intro Header --> <header class="intro"> <div class="intro-body"> <div class="container"> <div class="row"> <div class="col-md-12"> <h1 class="brand-heading">Search for a Book</h1> </div> </div> <form role="form" id="searchform" action="test.php" method="GET"> <div class="row"> <div class="col-md-4 col-md-offset-1 intro-text"> <div class="input-group input-group-lg"> <span class="input-group-addon" id="sizing-addon1">Title</span> <input type="text" name="qt" id="qt" class="form-control" placeholder="Book Title" aria-describedby="sizing-addon1" required oninvalid="qt.setCustomValidity('Please enter a title')" autocomplete=off> </div> </div> <div class="col-md-4"> <div class="input-group input-group-lg"> <span class="input-group-addon" id="sizing-addon1">Author</span> <input type="text" name="qa" id="qa" class="form-control" placeholder="Book Author" aria-describedby="sizing-addon1" required oninvalid="qa" autocomplete=off> </div> </div> <div class="col-md-2"> <button type="submit" class="btn btn-default btn-lg" onclick="check();">Search</a> </div> </div> </form> <div class="row" id="searchmessage" style="display:none; margin-top:20px;"> <div class="col-md-12"><img align=left src="img/loading.gif" width=75><img align=right src="img/loading.gif" width=75><h2>Searching for your book.<br>This may take 10-20 seconds</h2> <!--<h3 style="font-size:1em;">For anonymity, your request was routed through <div id="countryname" style="display:inline-block;">another country.</div>--> </div> </div> </div></div></header> <!-- Footer --> <footer> <div class="container text-center"> <p>Copyright © Secret Beach Book Club 2025</p> </div> </footer> <script type="text/javascript"> $(document).ready(function() { var countryname = ""; if (countryname == "") { countryname = "another country"; } $("#countryname").html(countryname); }); $("#convertlink").click(function(){ $("#convert").show(); $(".convert").show(); }); $("#qt").click(function(){ $('input[name="qt"]').val(""); $("#hideme").hide(); $("#hardway").hide(); $(".hideme").hide(); $(".hardway").hide(); }); $("#qa").click(function(){ $('input[name="qa"]').val(""); $("#hideme").hide(); $("#hardway").hide(); $(".hideme").hide(); $(".hardway").hide(); }); function check() { if (document.getElementById("qt").checkValidity()) { if (document.getElementById("qa").checkValidity()) { document.getElementById("searchmessage").style.display = 'block'; document.getElementById("hideme").style.display = 'none'; document.getElementById("hardway").style.display = 'none'; } } } </script></body></html>