How do I register an user using MERN Stack? - mern

I am working in a web page design and I need to register users, take some data and put it in a dB?
How can I do that Using MERN Stack????
The last time I did some similar was with Php but I need Dynamic Pages today.

Related

Vb.net run apication server-side?

I want to build a website which uses HTML buttons that use the POST method to trigger a vb.net function on the "server" host PC via the TCP... In fact this is how I build applications on our local network. I was thinking this could be handy if it were also applied to a website on the WWW.
My vb.net applications typically receive an input from the html POST method, use that input to calculate or retrieve data and generate a new html page for the users viewing (typically displaying the requested data in some form or other)
I had built a simple website on a synology NAS before which will not run any vb.net applications because its not windows based.
What I was looking at was a HP Proliant Microserver that has windows server running on it.
I've never done this before but was intrested to know if this concept of posting html text to trigger server-side running vb.net applications would work on a windows server or is there far more involved?

How To Convert Rails Application Into An Actual Site

I built a simple todo list application on Rails. I built it through Team Treehouse. It was one of the courses. I am wondering how would I convert it to a site. The reason being is because it would be a nice to add to my portfolio (I have yet to style it though). Would I simply upload the application to my github then go through such as I would to create a website through Github pages?
I plan to buy a url for it. I am just simply trying to gauge out how would I approach converting it into a site. My apologies, it is a noob question.
you can push your code to github and sign in to a heroku account and push it there. There are lot of documentation on how to do that based on your rails application versions. how to put a rails application on heroku or getting started with rails4 and heroku
Create a heroku account. You can rename the domain grocerylist.heroku.com for example. No need to buy a domain.

Create an auto login for umbraco cms

I'm trying to create an auto login for Umbraco cms.
Meaning, I have a website which wraps the cms, and i want users to be able to use it,
Without entering their login details when entering the umbraco cms.
I want to be able to this without sending back the umbraco auth cookie to the user.
Is there anyway I can achieve this?
Thanks.
Logically if you create your own maintenance pages and then use Umbraco's Content Servcie you could maintain an Umbraco website from an alternative maintenance system without ever bothering with the Umbraco pipeline. So you can remove login or the use of cookies as you see fit. You could use something like Microsoft Dynamic Data to help build the maintenance engine.
If you want to use the Umbraco back-office I believe you are committed to using the Umbraco workflow, which includes login & cookies.

User backend interface in Joomla?

I am wondering if there is any user back-end manager in Joomla.
I have developed a website and the homepage need to be updated time to time. What my client want is to update it by himself. But I have used a little more HTML tags and he doesn't know about HTML. So is there by chance a non professional user interface so that he can update homepage without knowing the HTML. Or any alternative if possible.
Your client can use the Joomla back-end, depending on the version here is some tutorials :
Joomla 2.5
Joomla 3

HTML: How to design profile page that is used for different users

I want to make a website for my Android social networking app and need some assistance with a basic concept regarding user profile pages. So right now I have a native Android app where users have their own profile page displaying their profile stats, e.g. followers etc. and I would like to do something similar in HTML. My question is how can I design a generic profile.html page that displays the current user's username/stats and that can be used for different users? For example, see how Facebook are using the same profile page for each user but they replace the name/bio/stats fields with the data for the current user, how is that done - at the server side (by replacing the appropriate fields with the data for the current user), or at the client side (by loading them with a separate script after the page has loaded)?
Also, I am using a Tomcat servlet to deal with the requests if anyone is interested.
Thanks for any assistance and sorry if the question is silly :)
You would have to use PHP. Think of webpages as a mathmatical equation where HTML is 3+4=12 but PHP is 3+X=12. HTML is already defined, you can't change it. Where PHP you can code the entire page but get the bio or username from a database.
But you should be warned that this is no simple task, you would have to create a large mySQL database, possibly more to handle logging in and out and use the PHP to define what you are calling for form the mySQL database.
It is possible, but not in a day.