pub fn create_user( conn: &Connection, login: &str, name: &str, email: &str, password: &str, is_admin: bool, ) -> Result<User, String>
Create a new user in the database.
Returns a database error if the insert fails.