Struggling with my Blazor app on .NET Core 7 - I can't seem to get two buttons to display on the same line.
The first button needs to be inside an edit form for submitting and inserting data,
while the second button should be outside the edit form for clearing data controls.
How can I achieve this layout?
This is what my code looks like:
<EditForm>
<button type="submit" class="btn btn-primary" style="width:140px">
Create
</button>
</EditForm>
<button class="btn btn-primary align-top m-2" style="width:140px;"><i aria-hidden="true"></i> Clear</button>
Expected result: https://i.sstatic.net/hEZOl.png