We use cookies to make HubSpot's community a better place. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. To learn more, and to see a full list of cookies we use, check out our Cookie Policy (baked goods not included).
Thursday
Can someone tell me what I am doing wrong with the syntax below? I am trying to grab the value (email) from the input to use as a variable to pass as a url parameter.
<div class="flex flex-col">
<form id="form-member" method="GET">
<label>Enter Member's Email:</label>
<input name="member" type="text" class="col-span-2 p-4" />
</form>
{% set query = request.query_dict.get("member") %}
{% set members = crm_objects("azimuth", "member_email=" + query, "sfcontact_id") %}
</div>
<div class="w-full mt-10">
<a class="view-btn text-white uppercase" href="/dashboard?member_email={{ query }}&sf_id={{ member.sfcontact_id }}" target="_blank">View Dashboard</a>
</div>
Thanks,
Terry McMillan
Thursday
Hi, @tmcmillan99! Thanks for the interesting question. Hey @mangelet @JBeatty @albertsg, can you provide any insight into how @tmcmillan99 can accomplish their goal?
Thank you!
Jaycee