Hello i have a problem. I am trying to make my website an application. I am having problem on the login page. I made the connection with the database but i cant log in as a user.
this is the code. Can anyone help me?
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:employeeservice="services.employeeservice.*">
<fx:Script>
<![CDATA[
protected function button_clickHandler(event:MouseEvent):void
{
User_LoginResult.token = employeeService.User_Login(username.text, password.text);
}
]]>
</fx:Script>
<!-- Declarations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<fx:Declarations>
<s:CallResponder id="User_LoginResult"/>
<employeeservice:EmployeeService id="employeeService"/>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Panel x="24" y="95"
width="390" height="200">
<s:layout>
<s:VerticalLayout gap="10"
paddingTop="15" paddingLeft="15" paddingRight="15" paddingBottom="15"/>
</s:layout>
<s:TextInput prompt="Username:" id="username"/>
<s:TextInput prompt="Password:" editable="true" id="password" />
<s:Button id="button" label="Submit" click="button_clickHandler(event)"/>
</s:Panel>
</s:View>