Skip to content

Instantly share code, notes, and snippets.

@justintoth
Created March 12, 2012 20:41
Show Gist options
  • Save justintoth/2024560 to your computer and use it in GitHub Desktop.
Save justintoth/2024560 to your computer and use it in GitHub Desktop.
Keyfob Submit
<form action="http://localhost/NavtrakAPI/api/peripherals/create/?authUserId=37853&authGuid=4cc1afa9-12f6-47da-af48-3103c56311dc" method="post">
<div>
Name: <input name="peripheral.Name" value="@Model.Name" />
</div>
<br />
<div>
Serial Number: <input name="peripheral.SerialNumber" value="@Model.SerialNumber" />
</div>
<br />
<div>
Unit Number: <input name="peripheral.UnitNumber" value="@Model.UnitNumber" />
</div>
<br />
<div>
Driver Id: <input name="peripheral.DriverId" value="@Model.DriverId" />
</div>
<br />
<div>
Keyfob Is Swipe: <input name="peripheral.KeyfobIsSwipe" value="@Model.KeyfobIsSwipe" />
</div>
<br />
<div>
Keyfob Color: <input name="peripheral.KeyfobColor" value="@Model.KeyfobColor" />
</div>
<br />
<div>
Keyfob Action Id: <input name="peripheral.KeyfobActionId" value="@Model.KeyfobActionId" />
</div>
<br />
<p>
<input type="submit" value="Create" />
</p>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment