I want to create a signup process where a user will click sign up, the sign up form will disappear, and the text “check your inbox fro confirmation” will appear. This seems really easy, but I’m struggling with such a stupid part of this which is that when I try to put the text on top of where the form is it just drags the text into the form group and messes up my formatting.
I’m sure this is a simple button I have to press or something for this to not happen… any advice would be really helpful!
This is really just a simple matter of hiding and showing groups.
Let’s say you have a group ‘sign up’ where the user signs up.
You then add another group under that called ‘verify’ or whatever you want to call it…and add a text element with whatever you want to say.
When the user clicks the sign up button you have a workflow.
In the workflow, you sign the user up and then add another action to hide the signup group and another action to show the verify group.
Added: Your ‘sign up’ group would be visible on page load and collapsed when hidden. Your ‘verify’ group would not be visible on page load and collapsed when hidden.
Thanks for the response! I don’t need help with the workflow, that part is easy. The problem is getting the confirmation text to be where the signup form is without it becoming part of the same group and messing up the formatting.
I tried that, but unfortunately it doesn’t work. I hid the group with the form, and when I create the text and drag it to the middle of the page where I’d like it the text automatically goes somewhere into the group with the form even though it’s hidden.
I have done that, the exact same thing happens. It just takes the element that I am dragging and puts it right into the hidden group that is my sign up form.
This is simple. Use align to parent. Make two groups inside of it, 1 group your first section you want to be visible on load, and the 2nd will be hidden until you make it visible.
On your “next” action, just animate the visible one hidden (fade out) and animate in the hidden element (fade in).
Make sure the hidden element (one you want visible) is on top. You can do so by right-clicking the element and clicking “Bring to Front”.
When you do that, the element will get pushed to the bottom of the group. That is intended. The last item in your groups always has the layer precedence.
Thanks for the response, but I am still unable to do what I want. I made another recording of what happens when I use align to parent. Now the groups will just swap places and I end up with the text being either well above or well below where I want it to be.
I’m going to create a workflow so that when a user clicks “sign up” the form disappears and the confirmation text appears. The workflow part is easy, getting the text where I want is the part that I can’t for the life of me figure out how to do.
I want the text to be in the same exact location as the form. When someone clicks sign up the form disappears, and the text appears. I cannot figure out how to get the text to go where I want it to.
I get that the text needs to not be in the same container. I cannot figure out how to get the text to be outside of the container I am hiding but in the same location as the container I am hiding.