I trying to create an html widget that allows the user to add an event to a specified google calendar. The only users who will have access to the widget are allowed to add events to the calendar, so authentication isn't a problem. The website builder I am using does not allow me to use javascript. I have scoured google and stack overflow for possible solutions to my problem, and came up with nothing.
<a href="http://www.google.com/calendar/event?
action=TEMPLATE
&text=[event-title]
&dates=[start-custom format='Ymd\\THi00\\Z']/[end-custom format='Ymd\\THi00\\Z']
&details=[description]
&location=[location]
&trp=false
&sprop=
&sprop=name:"
target="_blank" rel="nofollow">Add to my calendar</a>
This code looked the most like what I needed, but when I ran the widget and clicked on the link that the code provided, it took me to my own calendar, and didn't add an event. Is there any way at all to simply add an event using HTML?
Thanks