https://:site_url:/site_login.html
and for registration https://:site_url:/site_reg.html.
After the user creates an account or starts a section, we want him to edit or add information such as address, profile picture, biography, etc. So let's step by step show you how to configure the add profile information page.
We will use the code [*setuser] CONFIGURATION ||CONTENT [/setuser]
In the CONTENT part is the part where'' we will insert the form and fields to add the data, it is the part that will be visualized in the browser.
Example:
Create a page and paste this code.
[*setuser]ud=edit-0.html||
Photo: :foto:
Full Name :var-name:
Genre: :var-genre(Male|Female):
Country: :var-country:
Biography: :var-biography:
:submit:
[/setuser]
Where:
In the CONFIGURATION we have the value of ud = edit-0.html, after editing the user will be forwarded to page 0, you can change to another specific page.
In the CONTENTS section we have some tags like:
:foto: - which is an input of type file to upload the photo that will be shown in the profile.
:var-VAR_VALUE: - it is a text type input with personalized values, you can for example address, age, likes etc, the value of the attribute you want, in the example above we have :var-name: which is the full name, :var-age: which is the age, :var-country: which is the country and so on .
Username cannot be changed.
:var-VALUE(OPCTION1 | OPTION2): shows a select with options, you can add more than 1 option (OPCTION1 | OPTION2 | OPCTION3.....). In the example above we have :var-gender(Male|Female): which shows the user to choose the gender that are male and female.
:submit: - it is a submit button to save the entered data, you can edit the button by insert ing the text of your choice, :submit=Update:
Next section we will post on how to configure the user profile view page.
NOTE: Remove the asterisks.