~~html~~
~~hot male~~
hotman
🥵 Simple HTML generation in pure Rust with no macros 🥵
See the documentation for usage details.
```rust use hotman::*;
let dom = html(( Comment("A simple login page"), head(( meta(Charset("utf-8")), title("Login"), script(Src("/script.js")), )), body(( h1("Login"), form(( (Action("/login"), Method("POST")), input(( Type("text"), Name("username"), Placeholder("Username"), On(Change, "validateusername()"), Autofocus, )), input(( Type("password"), Name("password"), Placeholder("Password"), On(Change, "validatepassword()"), )), input((Type("submit"), Value("Login"))), )), BR, p(( "Don't have an account? ", a((Href("/register"), "Register")), )), )), )) .page();
println!("{dom}"); ```
```rust use hotman::*;
struct User { id: u64, username: String, password: String, }
impl User { fn new(id: u64, username: String, password: String) -> Self { Self { id, username, password, } } }
// Some example users let users = vec![ User::new(0, "Alice".into(), "hunter2".into()), User::new(1, "Bob".into(), "swordfish".into()), User::new(2, "Charlie".into(), "1337".into()), ];
let userstable = table(( Style("border-collapse: collapse;"), tr((th("ID"), th("Username"), th("Password"))), users.iter().map(|user| { tr(( td(user.id.tostring()), td(&user.username), td(&user.password), )) }), ));
println!("{users_table}"); ```