1
0
mirror of https://github.com/actix/examples synced 2024-11-27 16:02:57 +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>
<form target="/" method="post" enctype="multipart/form-data">
<input type="file" multiple name="file"/>
<input type="submit" value="Submit"></button>
<button type="submit">Submit</button>
</form>
</body>
</html>"#;

View File

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