Without storing anything to a database, I want for the user to be able to enter a name (NAME) into my form and hit a submit button. Upon hitting submit, the name entered will be appended at the end of my URL like so: http://127.0.0.1:8000/username=NAME
All I have is this basic form:
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
<input type="submit" value='Enter Name'></input>
</form>
I am also trying to make it so that if the user types directly into the URL, they would be able to find the same page as if they were typing into the form.
Example: A user types 'Joe' at the end of an URL as http://127.0.0.1:8000/username=Joe and gets a page about Joe. I expect the same resulting page about Joe when I enter 'Joe' into my form.