Skip to content

Instantly share code, notes, and snippets.

@palumbo
Created January 19, 2016 23:02
Show Gist options
  • Save palumbo/5ca22392e6fac595e87e to your computer and use it in GitHub Desktop.
Save palumbo/5ca22392e6fac595e87e to your computer and use it in GitHub Desktop.
This is the form page where the user enters information and uses the HTML widget to upload a resume.
<html>
<head>
<title>Contact Us</title>
<style> body { font-family: sans-serif; } </style>
</head>
<body>
<h2>Apply for an awesome job</h2>
<form action="pick2.php" method="post">
Name: <input type="input" name="name" id="name" /><br>
Email: <input type="email" name="email" id="email" /><br>
Message<br><textarea cols="30" rows="4" id="message" name="message"></textarea><br>
<input type="filepicker" name="uploadedFile" id="uploadedFile" data-fp-apikey="AopG2llxERtqWEaj3lSjQz" data-fp-button-text="Upload Your Resume Using Filestack"/> <br>
<input type="submit" name="submit" value="Submit" />
</form>
<script type="text/javascript" src="//api.filestackapi.com/filestack.js"></script>
<script> filepicker.setKey('AopG2llxERtqWEaj3lSjQz'); </script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment