1
0
mirror of https://github.com/actix/examples synced 2024-11-30 17:14:35 +01:00

Corrected mismatch between html start tag and html end tag. (#349)

This commit is contained in:
Simon Strandgaard 2020-08-05 22:08:54 +02:00 committed by GitHub
parent 4f29102071
commit a3faea082b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ fn index() -> HttpResponse {
<body> <body>
<form target="/" method="post" enctype="multipart/form-data"> <form target="/" method="post" enctype="multipart/form-data">
<input type="file" multiple name="file"/> <input type="file" multiple name="file"/>
<input type="submit" value="Submit"></button> <button type="submit">Submit</button>
</form> </form>
</body> </body>
</html>"#; </html>"#;

View File

@ -30,7 +30,7 @@ fn index() -> HttpResponse {
<body> <body>
<form target="/" method="post" enctype="multipart/form-data"> <form target="/" method="post" enctype="multipart/form-data">
<input type="file" multiple name="file"/> <input type="file" multiple name="file"/>
<input type="submit" value="Submit"></button> <button type="submit">Submit</button>
</form> </form>
</body> </body>
</html>"#; </html>"#;