Upload to Google Drive has been restricted to Admins Only

The restricted page has been disarmed, and is shown below.   Sign In to process the restricted page.

Form for Google Sheet with File Upload to Google Drive

This page uses a Hashtag Form for a Google Sheet, with a File Upload to Google Drive.   The Form is styled using Bootstrap 3 default theme classes.   Google Drive meta-data is selectively saved to named columns in the Row added by the Google Sheet Form.  
  


Disarmed this Hashtag Markup:
<# set folder_id to public google drive folder id by name "Hashtag-BAT File Uploads"; #>

<# start form for google sheet "Google Drive Uploads" <#[url.edit]#>;
	set form.class to "form-horizontal";
	when deleting call confirm('Delete File Record?');
	when done redirect to "/google-drive/google-sheet-files?index=<# form.id #>";
#>

<div class="form-group">
	<label for="file" class="col-sm-3 control-label">New File Upload</label>
	<div class="col-sm-6">
		<label class="btn btn-primary" tabindex="0" onKeyPress="$('#file').click(); return false;">
			<input type="file" <# upload to google drive "/<#[folder_id]#>";
				save name to File Name; save type to File Type; save web_url to File URL;
				save image_width to Image Width; save image_height to Image Height;  #>
				onchange="$('#file-info').html($(this)[0].files[0].name);" class="hidden" id="file">
			Choose File
		</label>&nbsp;&nbsp;
		<span class="label label-success" id="file-info"></span>
	</div>
</div>
<# if "<#[url.edit]#>"!="" #>
<div class="form-group">	
	<label for="name" class="col-sm-3 control-label">File Name</label>
	<div class="col-sm-6">
		<input type="text" <# File Name #> class="form-control" id="name">
	</div>
</div>
<# end if #>
<div class="form-group">
	<div class="col-sm-offset-3 col-sm-6">
		<input type="button" <# Create button #> class="btn btn-primary" value="Upload">
		<input type="button" <# Update button #> class="btn btn-primary">
		<input type="button" <# Delete button #> class="btn btn-primary">
	</div>
</div>

<# end form #>


The Hashtag Markup Language provides many methods to interact with items stored on Google Drive.

Examples in this section include Forms to upload Files to Google Drive, and Lists for Google Drive Folders.