summaryrefslogtreecommitdiff
path: root/demos/providers/protected/pages/Home.page
blob: 5fb47aa3a240ef9ff1e8d795dc591ab2740eab91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<h1>Provider Demo</h1>
<com:TForm>
<fieldset>
<legend>Vertical - TextOnLeft</legend>
	<com:TValidationSummary
		HeaderText="Login Failed Because:"
		Display="None"
		ValidationGroup="LoginCtrlVerticalTextOnLeft"/>
	<com:TLogin 
		ID="LoginCtrlVerticalTextOnLeft" 
		Orientation="Vertical"
		TextLayout="TextOnLeft"
		MembershipProvider="SqlMembershipProvider"/>
</fieldset>

<fieldset>
<legend>Vertical - TextOnTop</legend>
	<com:TValidationSummary
		HeaderText="Login Failed Because:"
		Display="None"
		ValidationGroup="LoginCtrlVerticalTextOnTop"/>
	<com:TLogin 
		ID="LoginCtrlVerticalTextOnTop" 
		Orientation="Vertical"
		TextLayout="TextOnTop"
		MembershipProvider="SqlMembershipProvider"/>
</fieldset>

<fieldset>
<legend>Horizontal - TextOnLeft</legend>
	<com:TValidationSummary
		HeaderText="Login Failed Because:"
		Display="None"
		ValidationGroup="LoginCtrlHorizontalTextOnLeft"/>
	<com:TLogin 
		ID="LoginCtrlHorizontalTextOnLeft" 
		Orientation="Horizontal"
		TextLayout="TextOnLeft"
		MembershipProvider="SqlMembershipProvider"/>
</fieldset>

<fieldset>
<legend>Horizontal - TextOnTop</legend>
	<com:TValidationSummary
		HeaderText="Login Failed Because:"
		Display="None"
		ValidationGroup="LoginCtrlHorizontalTextOnTop"/>
	<com:TLogin 
		ID="LoginCtrlHorizontalTextOnTop" 
		Orientation="Horizontal"
		TextLayout="TextOnTop"
		MembershipProvider="SqlMembershipProvider"/>
</fieldset>

</com:TForm>