2021-08-02 23:09:09 +02:00
|
|
|
//! Run with
|
|
|
|
|
//!
|
|
|
|
|
//! ```not_rust
|
2023-03-10 12:02:11 +01:00
|
|
|
//! cargo run -p example-form
|
2021-08-02 23:09:09 +02:00
|
|
|
//! ```
|
|
|
|
|
|
2021-10-24 22:05:16 +02:00
|
|
|
use axum::{extract::Form, response::Html, routing::get, Router};
|
2021-06-13 11:01:40 +02:00
|
|
|
use serde::Deserialize;
|
2022-03-06 12:37:00 +01:00
|
|
|
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
|
2021-06-13 11:01:40 +02:00
|
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
|
async fn main() {
|
2022-03-06 12:37:00 +01:00
|
|
|
tracing_subscriber::registry()
|
2022-11-30 18:46:19 +09:00
|
|
|
.with(
|
|
|
|
|
tracing_subscriber::EnvFilter::try_from_default_env()
|
|
|
|
|
.unwrap_or_else(|_| "example_form=debug".into()),
|
|
|
|
|
)
|
2022-03-06 12:37:00 +01:00
|
|
|
.with(tracing_subscriber::fmt::layer())
|
|
|
|
|
.init();
|
2021-08-01 22:01:33 +02:00
|
|
|
|
2021-06-13 11:01:40 +02:00
|
|
|
// build our application with some routes
|
2021-08-19 22:37:48 +02:00
|
|
|
let app = Router::new().route("/", get(show_form).post(accept_form));
|
2021-06-13 11:01:40 +02:00
|
|
|
|
2023-03-22 23:42:14 +01:00
|
|
|
// run it
|
|
|
|
|
let listener = tokio::net::TcpListener::bind("127.0.0.1:3000")
|
2021-06-19 12:50:33 +02:00
|
|
|
.await
|
|
|
|
|
.unwrap();
|
2023-03-22 23:42:14 +01:00
|
|
|
tracing::debug!("listening on {}", listener.local_addr().unwrap());
|
|
|
|
|
axum::serve(listener, app).await.unwrap();
|
2021-06-13 11:01:40 +02:00
|
|
|
}
|
|
|
|
|
|
2021-08-18 00:04:15 +02:00
|
|
|
async fn show_form() -> Html<&'static str> {
|
|
|
|
|
Html(
|
2021-06-13 11:01:40 +02:00
|
|
|
r#"
|
|
|
|
|
<!doctype html>
|
|
|
|
|
<html>
|
|
|
|
|
<head></head>
|
|
|
|
|
<body>
|
|
|
|
|
<form action="/" method="post">
|
|
|
|
|
<label for="name">
|
|
|
|
|
Enter your name:
|
|
|
|
|
<input type="text" name="name">
|
|
|
|
|
</label>
|
|
|
|
|
|
|
|
|
|
<label>
|
|
|
|
|
Enter your email:
|
|
|
|
|
<input type="text" name="email">
|
|
|
|
|
</label>
|
|
|
|
|
|
|
|
|
|
<input type="submit" value="Subscribe!">
|
|
|
|
|
</form>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
"#,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
2021-10-07 16:49:57 +02:00
|
|
|
#[allow(dead_code)]
|
2021-06-13 11:01:40 +02:00
|
|
|
struct Input {
|
|
|
|
|
name: String,
|
|
|
|
|
email: String,
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 00:04:15 +02:00
|
|
|
async fn accept_form(Form(input): Form<Input>) {
|
2021-06-13 11:01:40 +02:00
|
|
|
dbg!(&input);
|
|
|
|
|
}
|