Can't get submit to work

Can't get submit to work

this does not work
I am pretty sure you have all seen this before but I am stuck.
Just started to use jquery mobile and can't get a basic function to work.
Please advise,
Thanks

<

script type ="text/javascript" src ="http://code.jquery.com/jquery-1.5.1.min.js"></ script >

< script type ="text/javascript" src ="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.js"></ script>
 
 
Here is the error I get : htmlfile: Unexpected call to method or property access
 
Here is all of the code
 
<%
@ Page Language="C#" AutoEventWireup="true" Inherits="login" CodeFile="login.aspx.cs" enablesessionstate="true" %>
<! DOCTYPE html >
< html >
< head >
< title > Login </ title >
< meta charset ="utf-8"/>
< meta name ="viewport" content ="width=device-width, minimum-scale=1, maximum-scale=1" />
< link rel ="stylesheet" href ="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.css" />
< script type ="text/javascript" src ="http://code.jquery.com/jquery-1.5.1.min.js"></ script >
< script type ="text/javascript" src ="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.js"></ script >
< link href ="assets/css/custom-styles.css" rel ="stylesheet" type ="text/css" />
</ head >
< body >
<!-- start page -->
< div data-role ="page">
<!-- start header -->
< div data-role ="header" data-position ="inline" data-nobackbtn ="true">
< h1 > Login </ h1 >
< a href ="#" class ="ui-btn-right"> Cancel </ a >
</ div >
<!-- end header -->
<!-- start content -->
< div data-role ="content" data-theme ="c" data-inset ="true">
< form id ="loginForm" >
< fieldset >
< asp : Literal runat ="server" ID ="litMessage"></ asp : Literal >
< label for ="email"> Email: </ label >
< input type ="email" name ="email" id ="email" value ="" />
< label for ="password"> Password: </ label >
< input type ="password" name ="password" id ="password" value ="" />
< input id ="submit" type ="button" value ="Login" data-role ="button" data-inline ="true" data-theme ="b" />
< hr />
Don't have a login? < a href ="register.aspx"> Sign Up </ a >
</ fieldset >
</ form >
</ div >
<!-- end content -->
<!-- start footer -->
< div data-role ="footer">
< h4 > Page Footer </ h4 >
</ div >
<!-- end footer -->
</ div >
<!-- end page -->
</ body >
</ html >