I am writing a Rust web app using Rocket and Handlebars.
In my main.rs, I render a Handlebars template. In that template, I have a form. When the user enters in their information and presses "submit", I want to send that user input to another template.
index.hbs, simplified
<!doctype html>
<html>
<head>
</head>
<body>
<form id = myForm>
...
</form>
</body>
</html>
main.rs, simplified
fn index() -> Template {
context = context();
Template::render("index", &context)
}
fn main() {
rocket.ignite()
.mount("/", routes![index, ...])
.attach(Template::fairing())
.launch();
}
How can I do this?
Code Flow:
When the user request for
/
root route then we render the index template which contains the form, then user fills the form detail and submit the form which raise post request to/
root route where we check if user has filled all the information through the form struct that will be initialized by the submitted values, if the values are correct then we render the home template passing the initialized form instance or else we render the index templatemain.rs
index.html.hbs
home.html.hbs
Cargo.toml
Note: Context value are accessible inside template which we used to print the description.