Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="UEngage.Signup">
<ContentPage.Content>
<Grid>
<ScrollView>
<StackLayout VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand" >
<Image Source="camera.png" x:Name="profimage"
HeightRequest="250"
WidthRequest="{OnPlatform iOS=150, Android=150}"
HorizontalOptions="Center">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped" NumberOfTapsRequired="1"/>
</Image.GestureRecognizers>
</Image>
<Label Text="Register an Account on UEngage" FontSize="Medium" TextColor="Black" HorizontalOptions="Center" Padding="8"/>
<Entry Placeholder="First Name" x:Name="txtfirstname" Keyboard="Default" Margin="45, 5, 45, 5" />
<Entry Placeholder="Last Name" x:Name="txtlastname" Keyboard="Default" Margin="45, 5, 45, 5" />
<Entry Placeholder="Post Code" x:Name="txtpostal" Keyboard="Default" Margin="45, 5, 45, 5" />
<Entry Placeholder="Username" x:Name="txtUsername" Keyboard="Default" Margin="45, 5, 45, 5" />
<Entry Placeholder="Password" x:Name="txtpassword" IsPassword="True" Margin="45, 5, 45, 5" />
<Entry Placeholder="Confirm Password" x:Name="txtConfirm" IsPassword="True" Margin="45, 5, 45, 5" />
<Grid Margin="45, 10, 45, 5">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Button Text="SignUp"
Grid.Row="0" Grid.Column="0"
FontSize="Small"
HorizontalOptions="FillAndExpand"
BackgroundColor="Black"
TextColor="White" FontAttributes="Bold"
CornerRadius="8" x:Name="btnsignup" Clicked="btnsignup_Clicked"/>
</Grid>
</StackLayout>
</ScrollView>
<StackLayout IsVisible="False" x:Name="busyIndi" BackgroundColor="Black" Opacity="0.7" Orientation="Vertical">
<StackLayout Orientation="Vertical" HorizontalOptions="Center" VerticalOptions="CenterAndExpand">
<ActivityIndicator Color="#781241" IsRunning="true" />
<Label x:Name="progressname" Text="Loading..." TextColor="Accent" VerticalOptions="Center" />
</StackLayout>
</StackLayout>
</Grid>
</ContentPage.Content>
</ContentPage>