out.println(%><form> + 
        <p><label for="username">Username:</label><input type="text" name="username" /></p>  + 
        <p><label for="password">Password:</label><input type="password" name="password" /></p> +
        <p class="submit"> +
            <input type="submit" name="button" value="Login" /> +
            <input type="submit" name="button" value="Registrer" /> +
        </p> +
    </form> <%);
That is what i thought i could do, but obviously i can't so my question is, how do i print multiple lines of HTML? Is there a better way to do it than the way i'm doing ?
 
     
    