Skip to content
Snippets Groups Projects
Commit 8a8cbfbc authored by Pendyala Phani Chaitanya's avatar Pendyala Phani Chaitanya
Browse files

First Commit

parents
No related branches found
No related tags found
No related merge requests found
Showing
with 737 additions and 0 deletions
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/blue_300">
<item>
<shape android:shape="oval">
<solid android:color="@color/brown_500"/>
</shape>
</item>
</ripple>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/blue_300">
<item>
<shape android:shape="oval">
<solid android:color="@color/green_300"/>
</shape>
</item>
</ripple>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/blue_300">
<item>
<shape android:shape="oval">
<solid android:color="@color/red_400"/>
</shape>
</item>
</ripple>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/blue_300">
<item>
<shape android:shape="oval">
<solid android:color="@color/yellow_400"/>
</shape>
</item>
</ripple>
\ No newline at end of file
Project/app/src/main/res/drawable/animation.gif

1.56 MiB

Project/app/src/main/res/drawable/background.png

244 KiB

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="ring">
</shape>
Project/app/src/main/res/drawable/teacher_logo.jpg

7.18 KiB

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.chaitanya.project.attendance"
android:background="@android:color/black">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Admin"
android:textSize="40dp"
android:textStyle="bold"
android:textAlignment="gravity"
android:id="@+id/name"
android:layout_marginLeft="10dp"
android:layout_alignBottom="@+id/logout"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
android:id="@+id/logout"
android:text="Logout"
android:textAlignment="center"
android:background="@android:color/transparent"
android:textSize="15dp"
android:layout_marginTop="23dp"
android:textStyle="italic"
android:layout_marginRight="12dp"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true" />
<Spinner
android:id="@+id/courses"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/name"
android:layout_marginTop="29dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Date"
android:layout_marginLeft="10dp"
android:textSize="20dp"
android:layout_marginTop="10dp"
android:layout_below="@+id/courses"
android:id="@+id/date_text"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter Date"
android:textSize="20dp"
android:id="@+id/date"
android:textAlignment="center"
android:layout_below="@+id/courses"
android:layout_toEndOf="@+id/date_text"
android:layout_marginLeft="50dp"
android:focusableInTouchMode="false"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/list"
android:layout_below="@+id/date_text"
android:text="LIST OF STUDENTS"
android:layout_marginTop="28dp"
android:textSize="25dp"
android:textAlignment="center"
android:fontFamily="sans-serif-smallcaps"
android:textStyle="bold"/>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/list"
android:layout_marginTop="10dp"
android:id="@+id/all_students">
</ListView>
<android.support.v7.widget.AppCompatButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Done"
android:layout_below="@+id/all_students"
android:id="@+id/give_attendance"/>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.chaitanya.project.attendance_report"
android:background="@android:color/black">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Admin"
android:textSize="40dp"
android:textStyle="bold"
android:textAlignment="gravity"
android:id="@+id/name"
android:layout_marginLeft="10dp"
android:layout_alignBottom="@+id/logout"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
android:id="@+id/logout"
android:text="Logout"
android:textAlignment="center"
android:background="@android:color/transparent"
android:textSize="15dp"
android:layout_marginTop="23dp"
android:textStyle="italic"
android:layout_marginRight="12dp"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true" />
<Spinner
android:id="@+id/courses"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/name"
android:layout_marginTop="29dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/list"
android:layout_below="@+id/courses"
android:text="LIST OF STUDENTS"
android:layout_marginTop="28dp"
android:textSize="25dp"
android:textAlignment="center"
android:fontFamily="sans-serif-smallcaps"
android:textStyle="bold"/>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/list"
android:layout_marginTop="10dp"
android:id="@+id/all_students">
</ListView>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.chaitanya.project.Login_Page"
android:background="@android:color/black"
android:focusableInTouchMode="true">
<ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:src="@drawable/background"
android:id="@+id/Logo"
android:layout_marginTop="70dp"
android:layout_marginLeft="40dp"
android:layout_marginBottom="5dp"/>
<android.support.design.widget.TextInputLayout
android:layout_width="300dp"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="42dp"
tools:layout_editor_absoluteY="198dp"
android:id="@+id/textInputLayout"
android:layout_centerVertical="true"
android:layout_alignStart="@+id/textInputLayout2">
<EditText
android:id="@+id/password"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:hint="Password"
android:inputType="textPassword"
android:focusable="true"/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="300dp"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="42dp"
tools:layout_editor_absoluteY="128dp"
android:id="@+id/textInputLayout2"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:layout_marginTop="35dp">
<EditText
android:id="@+id/username"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:focusable="true"
android:hint="User Name"
android:inputType="text"
android:layout_marginTop="103dp"
android:layout_alignTop="@+id/textView"
android:layout_alignStart="@+id/textInputLayout2" />
</android.support.design.widget.TextInputLayout>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="AMRITA"
tools:layout_editor_absoluteX="100dp"
tools:layout_editor_absoluteY="39dp"
android:textSize="65dp"
android:textStyle="bold"
android:textAlignment="center"
android:textColor="@android:color/holo_red_light"
android:layout_marginTop="65dp"
android:layout_marginLeft="111dp"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imagelogin"
android:src="@drawable/animation"
android:layout_below="@+id/textInputLayout"
android:layout_marginTop="20dp"/>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.chaitanya.project.marks_entry"
android:background="@android:color/black">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Admin"
android:textSize="40dp"
android:textStyle="bold"
android:textAlignment="gravity"
android:id="@+id/name"
android:layout_marginLeft="10dp"
android:layout_alignBottom="@+id/logout"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
android:id="@+id/logout"
android:text="Logout"
android:textAlignment="center"
android:background="@android:color/transparent"
android:textSize="15dp"
android:layout_marginTop="23dp"
android:textStyle="italic"
android:layout_marginRight="12dp"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true" />
<Spinner
android:id="@+id/courses"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/name"
android:layout_marginTop="29dp"/>
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/peiodical_no"
android:layout_below="@+id/courses"
android:layout_marginTop="20dp"
android:entries="@array/spinnerItems">
</Spinner>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/list"
android:layout_below="@+id/peiodical_no"
android:text="LIST OF STUDENTS"
android:textSize="25dp"
android:layout_marginTop="20dp"
android:textAlignment="center"
android:fontFamily="sans-serif-smallcaps"
android:textStyle="bold"/>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/list"
android:layout_marginTop="20dp"
android:id="@+id/all_students">
</ListView>
<android.support.v7.widget.AppCompatButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Done"
android:layout_below="@+id/all_students"
android:id="@+id/upload_marks"/>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.chaitanya.project.marks_report"
android:background="@android:color/black">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Admin"
android:textSize="40dp"
android:textStyle="bold"
android:textAlignment="gravity"
android:id="@+id/name"
android:layout_marginLeft="10dp"
android:layout_alignBottom="@+id/logout"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
android:id="@+id/logout"
android:text="Logout"
android:textAlignment="center"
android:background="@android:color/transparent"
android:textSize="15dp"
android:layout_marginTop="23dp"
android:textStyle="italic"
android:layout_marginRight="12dp"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true" />
<Spinner
android:id="@+id/courses"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/name"
android:layout_marginTop="29dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/lis"
android:layout_below="@+id/courses"
android:text="LIST OF STUDENTS"
android:textSize="25dp"
android:layout_marginTop="20dp"
android:textAlignment="center"
android:fontFamily="sans-serif-smallcaps"
android:textStyle="bold"/>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:id="@+id/all_students"
android:layout_below="@+id/lis">
</ListView>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.chaitanya.project.students"
android:background="@android:color/black">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Admin"
android:textSize="40dp"
android:textStyle="bold"
android:textAlignment="gravity"
android:id="@+id/name"
android:layout_marginLeft="10dp"
android:layout_alignBottom="@+id/logout"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
android:id="@+id/logout"
android:text="Logout"
android:textAlignment="center"
android:background="@android:color/transparent"
android:textSize="15dp"
android:layout_marginTop="23dp"
android:textStyle="italic"
android:layout_marginRight="12dp"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true" />
<Spinner
android:id="@+id/courses"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/name"
android:layout_marginTop="29dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/list"
android:layout_below="@+id/courses"
android:text="LIST OF STUDENTS"
android:textSize="25dp"
android:layout_marginTop="20dp"
android:textAlignment="center"
android:fontFamily="sans-serif-smallcaps"
android:textStyle="bold"/>
<ListView
android:id="@+id/students_listview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/list"
android:layout_marginTop="25dp" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@android:drawable/stat_sys_download"
android:background="@android:color/transparent"
android:layout_toStartOf="@+id/logout"
android:layout_marginTop="35dp"
android:id="@+id/save"/>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.chaitanya.project.user"
android:background="@android:color/black">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Admin"
android:textSize="40dp"
android:textStyle="bold"
android:textAlignment="gravity"
android:id="@+id/name"
android:layout_marginLeft="10dp"
android:layout_alignBottom="@+id/logout"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
android:id="@+id/logout"
android:text="Logout"
android:textAlignment="center"
android:background="@android:color/transparent"
android:textSize="15dp"
android:layout_marginTop="23dp"
android:textStyle="italic"
android:layout_marginRight="12dp"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/name"
android:layout_marginTop="20dp"
android:id="@+id/scrollView2">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/attendance"
android:layout_width="160dp"
android:layout_height="160dp"
android:background="@drawable/buttonbrown"
android:elevation="40dp"
android:text="Mark Attendance"
android:textSize="20dp"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="14dp"
android:layout_marginStart="16dp" />
<Button
android:id="@+id/marks"
android:layout_width="160dp"
android:layout_height="160dp"
android:background="@drawable/buttongreen"
android:elevation="40dp"
android:text="Marks \nEntry"
android:textColorLink="@color/colorAccent"
android:textSize="20dp"
android:layout_alignBaseline="@+id/attendance"
android:layout_alignBottom="@+id/attendance"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_marginRight="14dp"
android:layout_marginEnd="16dp" />
<Button
android:id="@+id/report"
android:layout_width="160dp"
android:layout_height="160dp"
android:background="@drawable/buttonred"
android:elevation="40dp"
android:text="Marks\nReport"
android:textColorLink="@color/colorPrimaryDark"
android:textSize="20dp"
android:layout_marginTop="32dp"
android:layout_below="@+id/attendance"
android:layout_alignLeft="@+id/attendance"
android:layout_alignStart="@+id/attendance" />
<Button
android:layout_width="160dp"
android:layout_height="160dp"
android:background="@drawable/buttonbrown"
android:id="@+id/list"
android:textSize="20dp"
android:text="Students\nList"
android:layout_alignBaseline="@+id/report"
android:layout_alignBottom="@+id/report"
android:layout_alignLeft="@+id/marks"
android:layout_alignStart="@+id/marks" />
<Button
android:layout_width="160dp"
android:layout_height="160dp"
android:background="@drawable/buttongreen"
android:text="Attendance \nReport"
android:textSize="20dp"
android:id="@+id/attendance_report"
android:layout_marginTop="38dp"
android:layout_below="@+id/report"
android:layout_alignLeft="@+id/report"
android:layout_alignStart="@+id/report" />
<Button
android:layout_width="160dp"
android:layout_height="160dp"
android:text="File\nUpload"
android:textSize="20dp"
android:background="@drawable/buttonyellow"
android:id="@+id/file_upload"
android:layout_alignBaseline="@+id/attendance_report"
android:layout_alignBottom="@+id/attendance_report"
android:layout_alignLeft="@+id/list"
android:layout_alignStart="@+id/list"/>
</RelativeLayout>
</ScrollView>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:text="100"
android:textSize="30dp"
android:id="@+id/att_per"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAlignment="center"
android:layout_marginTop="23dp"
android:layout_marginBottom="10dp"
android:id="@+id/roll_name"
android:layout_toEndOf="@+id/att_per"
android:text="roll and name here"
android:layout_marginLeft="10dp"/>
</RelativeLayout>
\ No newline at end of file
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.chaitanya.project.DatePickerFragment">
<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/hello_blank_fragment" />
</FrameLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:context="com.example.chaitanya.project.attendance">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/roll_name"
android:layout_marginLeft="10dp"
android:layout_marginTop="15dp"
android:textSize="20dp"
android:text="Roll_no and name here"/>
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/options"
android:layout_below="@+id/roll_name"
android:layout_marginLeft="55dp"
android:layout_marginTop="5dp"
android:orientation="horizontal">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Present"
android:id="@+id/present"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Absent"
android:id="@+id/absent"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OD"
android:id="@+id/od"/>
</RadioGroup>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/options"
android:id="@+id/reason_od"
android:singleLine="true"
android:inputType="text"
android:hint="Official Purpose"
android:layout_marginLeft="57dp"
android:layout_marginBottom="20dp"/>
</RelativeLayout>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_marginTop="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/roll_name"
android:layout_marginLeft="10dp"
android:text="name and roll here"
android:textSize="20dp"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/marks"
android:inputType="numberDecimal"
android:layout_marginLeft="200dp"
android:layout_below="@+id/roll_name"
android:hint="Marks here!!!"/>
</RelativeLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="rollno and name here"
android:id="@+id/roll_name"
android:textSize="20dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="periodical_1"
android:id="@+id/perio_1"
android:textAlignment="center"
android:layout_marginEnd="44dp"
android:layout_below="@+id/roll_name"
android:layout_toStartOf="@+id/perio_2"
android:layout_marginBottom="20dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="periodical_2"
android:id="@+id/perio_2"
android:layout_marginLeft="20dp"
android:textAlignment="center"
android:layout_marginEnd="101dp"
android:layout_below="@+id/roll_name"
android:layout_alignParentEnd="true"
android:layout_marginBottom="20dp"/>
</RelativeLayout>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment