i need to create items for the below details in sharepoint list using angular JS
<html><body ng-app="app">
<form name="exampleForm">
<input type="text" name="snumber" ng-model="snumber" ng-pattern="/^2-[0-9]{2}-[0-9]{3}-[0-9]{4}$/" ng-blur="formats(snumber)" maxlength="15"/>
<input type="text" name="Name" ng-model="name" maxlength="15"/>
<input type="text" name="Amount" ng-model="Amount" maxlength="15"/>
</div>
</form>
</body>
</html>
Blitz