AngularJS Example:

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js"></script>
<div ng-app>
<div ng-controller="TodoCtrl">

    <form action="/{{id}}">
        <input type="text" name="name">
       <input type="email" name="email">
       <input type="submit" value="Submit" />
    </form>
</div>
</div>

JavaScript

function TodoCtrl($scope) {
  $scope.id = 'uploads';
}