i have almost completed my website with yahoo site builder .some pages i wish to create to be accessed by registered user only. how i can make a user registration window to make user registered with the site and how i can created a login window to log in by the users. if any one of the learned member can please help me with the specific codes
thanks in advance

Dani AI

Generated

A short expert follow-up to the exchange between and . The point made by — that a site-builder alone usually cannot provide a full account system — is the right starting place. Given the original was built with Yahoo Site Builder, the realistic choices are: use an embeddable, hosted membership/auth service (quick to add, minimal coding); move the site onto a hosting/CMS that includes user accounts (more work up front, but fully integrated); or host a small separate members app and link to it from the Site Builder pages (keeps the public site static while the accounts live elsewhere).

Key practical and security notes to follow regardless of path: keep registration fields minimal and require email verification; never store passwords in plain text (use current password-hashing approaches on the server side); force HTTPS for all auth pages; implement token-based password resets with short expiry; protect against common web attacks (input validation, prepared queries, CSRF defenses); add rate limiting and CAPTCHA for brute-force protection; and test deliverability of verification/reset emails (SMTP/SPF). Basic UX matters too: clear success/error messages, visible password-strength hints, and an accessible form layout.

Because Site Builder capabilities and hosting plans differ, check the product/hosting documentation or control panel to see whether custom backends or embedded widgets are allowed—that determines which of the above paths is feasible and how to proceed safely.

Recommended Answers

All 2 Replies

how i can make a user registration window to make user registered with the site

You'll have to create a form with the fields you require included. This form will have to be submitted to a server side script(php, asp, coldfusion, jsp...). Then the script will send the form information to the database. So for now, you need to figure out
A.) what server side languages you have available.
B.) what databases you have available.
C.) what your database tables should be.

i am so pleased 2 have ur advise in response 2 my query.i was medically unfit since last 15-20 days that is y i kud not send thanks in time. i will follow your tips 2 complete my web designing i am using yahoo site builder 4 my designing

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.