You are on page 1of 34

EVENT MANAGEMENT SYSTEM

ABSTRACT:
This is an Online event management system software project that serves the
functionality of an event manager. The system allows only registered users to
login and new users are allowed to resister on the application. This is a web
application developed in Asp.net and Sql but desktop application of the same
application is also available. The project provides most of the basic
functionality required for an event. It allows the user to select from a list of
event types. Once the user enters an event type eg (Marriage, Dance Show etc),
the system then allows the user to select the date and time of event, place and
the event equipment’s. All this data is logged in the database and the user is
given a receipt number for his booking. This data is then sent to the
administrator (website owner) and they may interact with the client as per his
requirements and his contact data stored in the database. The admin has a index
page to view of the events they care taking by the management for the
customers.,

EXISTING SYSTEM:
In the existing system, the students has to visit or call the particular college to
get details of the symposium and list of event going to take place. It is quiet
complex and manual one. Event management system has to keep the records of
the event and student details.

PROPOSED SYSTEM:
This project helps to manage events by creating webpage for the event and
making the students to register which make to reduce the work for the event
coordinator and to maintain the database of the student participating with events
list.
ARCHITECTURE:

SCREENSHOT:
SAMPLE CODE:
Index.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

namespace WindowsFormsApplication1

public partial class index : Form

public index()

InitializeComponent();
}

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs


e)

user_login user = new user_login();

user.Show();

private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs


e)

admin_login admin = new admin_login();

admin.Show();

private void label2_Click(object sender, EventArgs e)

private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs


e)

register reg = new register();

reg.Show();

private void panel1_Paint(object sender, PaintEventArgs e)

}
private void index_Load(object sender, EventArgs e)

User Login.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class user_login : Form

public user_login()

InitializeComponent();

private void button1_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();
SqlCommand cmd = new SqlCommand("Select * from reg WHERE
uname='"+textBox1.Text+"' and pass='"+textBox2.Text+"' ",Con);

SqlDataReader dr = cmd.ExecuteReader();

//String a = textBox1.Text;

//String b = textBox2.Text;

if (dr.HasRows)

MessageBox.Show("Success");

main m = new main();

m.Show();

this.Hide();

else

MessageBox.Show("Failed");

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs


e)

register reg = new register();

reg.Show();

this.Hide();

Register.cs

using System;

using System.Collections.Generic;
using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class register : Form

public register()

InitializeComponent();

private void label2_Click(object sender, EventArgs e)

private void button1_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

if (textBox1.Text != "" && textBox1.Text != "" && textBox2.Text != "" &&


textBox3.Text != "" && textBox4.Text != "" && textBox5.Text != "" && textBox6.Text != "" &&
textBox7.Text != "" && textBox8.Text != "" && textBox9.Text != "" && textBox10.Text != "")

SqlCommand cmd6 = new SqlCommand(@"insert into reg values('" +


textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text +
"','" + textBox5.Text + "','" + textBox6.Text + "','" + textBox7.Text + "','" +
textBox8.Text + "','" + textBox9.Text + "','" + textBox10.Text + "')", Con);

int x = cmd6.ExecuteNonQuery();
if (x > 0)

MessageBox.Show("Registered Successfully");

main m = new main();

m.Show();

this.Hide();

else

MessageBox.Show("Not Registered");

else

MessageBox.Show("Please fill all the details");

private void textBox1_TextChanged(object sender, EventArgs e)

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs


e)

user_login log = new user_login();

log.Show();

this.Hide();

}
Main.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

namespace WindowsFormsApplication1

public partial class main : Form

public main()

InitializeComponent();

private void label1_Click(object sender, EventArgs e)

private void button1_Click(object sender, EventArgs e)

birthday bd = new birthday();

bd.Show();

private void button5_Click(object sender, EventArgs e)

{
fam_reunion fam = new fam_reunion();

fam.Show();

private void button2_Click(object sender, EventArgs e)

new_year nw = new new_year();

nw.Show();

private void button3_Click(object sender, EventArgs e)

musical_concert mc = new musical_concert();

mc.Show();

private void button4_Click(object sender, EventArgs e)

wedding wd = new wedding();

wd.Show();

private void button6_Click(object sender, EventArgs e)

baby_shower bs = new baby_shower();

bs.Show();

Birthday Party.cs

using System;

using System.Collections.Generic;
using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class birthday : Form

public birthday()

InitializeComponent();

private void label4_Click(object sender, EventArgs e)

private void label5_Click(object sender, EventArgs e)

private void birthday_Load(object sender, EventArgs e)

label12.Text = DateTime.Now.ToLongTimeString();

label13.Text = DateTime.Now.ToLongDateString();
}

private void label12_Click(object sender, EventArgs e)

private void button2_Click(object sender, EventArgs e)

main m=new main();

m.Show();

this.Hide();

private void button1_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

if(textBox1.Text!="" &&textBox1.Text!="" &&textBox2.Text!


=""&&dateTimePicker1.Text!=""&& textBox3.Text!="" &&textBox4.Text!=""&& textBox5.Text!=""
&&textBox6.Text!=""&&textBox7.Text!="" && comboBox1.Text!="" )

SqlCommand cmd = new SqlCommand(@"insert into birthday values('" +


textBox1.Text + "','" + textBox2.Text + "','" + dateTimePicker1.Text + "','" + textBox3.Text
+ "','" + textBox4.Text + "','" + textBox5.Text + "','" + textBox6.Text + "','" +
textBox7.Text + "','" + comboBox1.Text + "')", Con);

int x = cmd.ExecuteNonQuery();

if (x > 0)

MessageBox.Show("Registered Successfully");

else

{
MessageBox.Show("Not Registered");

else{

MessageBox.Show("Please fill all the details");

New Year.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class new_year : Form

public new_year()

InitializeComponent();

private void new_year_Load(object sender, EventArgs e)

label12.Text = DateTime.Now.ToLongTimeString();
label13.Text = DateTime.Now.ToLongDateString();

private void button1_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

if (textBox1.Text != "" && textBox1.Text != "" && textBox2.Text != "" &&


dateTimePicker1.Text != "" && textBox3.Text != "" && textBox4.Text != "" && textBox5.Text !=
"" && textBox6.Text != "" && textBox7.Text != "" && comboBox1.Text != "")

SqlCommand cmd3 = new SqlCommand(@"insert into new_year values('" +


textBox1.Text + "','" + textBox2.Text + "','" + dateTimePicker1.Text + "','" + textBox3.Text
+ "','" + textBox4.Text + "','" + textBox5.Text + "','" + textBox6.Text + "','" +
textBox7.Text + "','" + comboBox1.Text + "')", Con);

int x = cmd3.ExecuteNonQuery();

if (x > 0)

MessageBox.Show("Registered Successfully");

else

MessageBox.Show("Not Registered");

else

MessageBox.Show("Please fill all the details");

private void button2_Click(object sender, EventArgs e)

{
main m = new main();

m.Show();

this.Hide();

Musical Concert.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class musical_concert : Form

public musical_concert()

InitializeComponent();

private void musical_concert_Load(object sender, EventArgs e)

label12.Text = DateTime.Now.ToLongTimeString();

label13.Text = DateTime.Now.ToLongDateString();

}
private void button1_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

if(textBox1.Text!="" &&textBox1.Text!="" &&textBox2.Text!


=""&&dateTimePicker1.Text!=""&& textBox3.Text!="" &&textBox4.Text!=""&& textBox5.Text!=""
&&textBox6.Text!=""&&textBox7.Text!="" && comboBox1.Text!="" )

SqlCommand cmd2 = new SqlCommand(@"insert into music values('" +


textBox1.Text + "','" + textBox2.Text + "','" + dateTimePicker1.Text + "','" + textBox3.Text
+ "','" + textBox4.Text + "','" + textBox5.Text + "','" + textBox6.Text + "','" +
textBox7.Text + "','" + comboBox1.Text + "')", Con);

int x = cmd2.ExecuteNonQuery();

if (x > 0)

MessageBox.Show("Registered Successfully");

else

MessageBox.Show("Not Registered");

else{

MessageBox.Show("Please fill all the details");

private void button2_Click(object sender, EventArgs e)

main m = new main();

m.Show();
this.Hide();

Wedding.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class wedding : Form

public wedding()

InitializeComponent();

private void wedding_Load(object sender, EventArgs e)

label12.Text = DateTime.Now.ToLongTimeString();

label13.Text = DateTime.Now.ToLongDateString();

private void button1_Click(object sender, EventArgs e)


{

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

if (textBox1.Text != "" && textBox1.Text != "" && textBox2.Text != "" &&


dateTimePicker1.Text != "" && textBox3.Text != "" && textBox4.Text != "" && textBox5.Text !=
"" && textBox6.Text != "" && textBox7.Text != "" && comboBox1.Text != "")

SqlCommand cmd1 = new SqlCommand(@"insert into wedding values('" +


textBox1.Text + "','" + textBox2.Text + "','" + dateTimePicker1.Text + "','" + textBox3.Text
+ "','" + textBox4.Text + "','" + textBox5.Text + "','" + textBox6.Text + "','" +
textBox7.Text + "','" + comboBox1.Text + "')", Con);

int x = cmd1.ExecuteNonQuery();

if (x > 0)

MessageBox.Show("Registered Successfully");

else

MessageBox.Show("Not Registered");

else

MessageBox.Show("Please fill all the details");

private void button2_Click(object sender, EventArgs e)

main m = new main();

m.Show();

this.Hide();

}
}

Family Reunion.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class fam_reunion : Form

public fam_reunion()

InitializeComponent();

private void fam_reunion_Load(object sender, EventArgs e)

label12.Text = DateTime.Now.ToLongTimeString();

label13.Text = DateTime.Now.ToLongDateString();

private void label1_Click(object sender, EventArgs e)

}
private void button1_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

if (textBox1.Text != "" && textBox1.Text != "" && textBox2.Text != "" &&


dateTimePicker1.Text != "" && textBox3.Text != "" && textBox4.Text != "" && textBox5.Text !=
"" && textBox6.Text != "" && textBox7.Text != "" && comboBox1.Text != "")

SqlCommand cmd4 = new SqlCommand(@"insert into fam_reunion values('" +


textBox1.Text + "','" + textBox2.Text + "','" + dateTimePicker1.Text + "','" + textBox3.Text
+ "','" + textBox4.Text + "','" + textBox5.Text + "','" + textBox6.Text + "','" +
textBox7.Text + "','" + comboBox1.Text + "')", Con);

int x = cmd4.ExecuteNonQuery();

if (x > 0)

MessageBox.Show("Registered Successfully");

else

MessageBox.Show("Not Registered");

else

MessageBox.Show("Please fill all the details");

private void button2_Click(object sender, EventArgs e)

main m = new main();

m.Show();
this.Hide();

Baby Shower.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class baby_shower : Form

public baby_shower()

InitializeComponent();

private void baby_shower_Load(object sender, EventArgs e)

label12.Text = DateTime.Now.ToLongTimeString();

label13.Text = DateTime.Now.ToLongDateString();

private void button1_Click(object sender, EventArgs e)


{

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

if(textBox1.Text!="" &&textBox1.Text!="" &&textBox2.Text!


=""&&dateTimePicker1.Text!=""&& textBox3.Text!="" &&textBox4.Text!=""&& textBox5.Text!=""
&&textBox6.Text!=""&&textBox7.Text!="" && comboBox1.Text!="" )

SqlCommand cmd5= new SqlCommand(@"insert into baby_shower values('" +


textBox1.Text + "','" + textBox2.Text + "','" + dateTimePicker1.Text + "','" + textBox3.Text
+ "','" + textBox4.Text + "','" + textBox5.Text + "','" + textBox6.Text + "','" +
textBox7.Text + "','" + comboBox1.Text + "')", Con);

int x = cmd5.ExecuteNonQuery();

if (x > 0)

MessageBox.Show("Registered Successfully");

else

MessageBox.Show("Not Registered");

else{

MessageBox.Show("Please fill all the details");

private void button2_Click(object sender, EventArgs e)

main m = new main();

m.Show();

this.Hide();

}
}

Admin Login.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class admin_login : Form

public admin_login()

InitializeComponent();

private void button1_Click(object sender, EventArgs e)

String a = textBox1.Text;

String b = textBox2.Text;

if ((a == "admin") && (b == "dotnet"))

MessageBox.Show("Success");

data_view data = new data_view();

data.Show();

this.Hide();
}

else

MessageBox.Show("Failed");

View data.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class data_view : Form

public data_view()

InitializeComponent();

private void label1_Click(object sender, EventArgs e)

{
}

private void button1_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

SqlCommand cmd = new SqlCommand(("Select*from birthday"), Con);

SqlDataAdapter da = new SqlDataAdapter(cmd);

DataSet ds = new DataSet();

da.Fill(ds);

dataGridView1.DataSource = ds.Tables[0];

Con.Close();

private void data_view_Load(object sender, EventArgs e)

private void dataGridView1_CellContentClick_1(object sender,


DataGridViewCellEventArgs e)

private void button2_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

SqlCommand cmd = new SqlCommand(("Select*from wedding"), Con);


SqlDataAdapter da = new SqlDataAdapter(cmd);

DataSet ds = new DataSet();

da.Fill(ds);

dataGridView2.DataSource = ds.Tables[0];

Con.Close();

private void button3_Click(object sender, EventArgs e)

data_view1 data1 = new data_view1();

data1.Show();

View Data1.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class data_view1 : Form

public data_view1()

{
InitializeComponent();

private void button1_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

SqlCommand cmd = new SqlCommand(("Select*from new_year"), Con);

SqlDataAdapter da = new SqlDataAdapter(cmd);

DataSet ds = new DataSet();

da.Fill(ds);

dataGridView1.DataSource = ds.Tables[0];

Con.Close();

private void button2_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

SqlCommand cmd = new SqlCommand(("Select*from baby_shower"), Con);

SqlDataAdapter da = new SqlDataAdapter(cmd);

DataSet ds = new DataSet();

da.Fill(ds);

dataGridView2.DataSource = ds.Tables[0];

Con.Close();

private void button3_Click(object sender, EventArgs e)

data_view2 data2 = new data_view2();

data2.Show();
}

View Data2.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

namespace WindowsFormsApplication1

public partial class data_view2 : Form

public data_view2()

InitializeComponent();

private void button1_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

SqlCommand cmd = new SqlCommand(("Select*from music"), Con);

SqlDataAdapter da = new SqlDataAdapter(cmd);

DataSet ds = new DataSet();


da.Fill(ds);

dataGridView1.DataSource = ds.Tables[0];

Con.Close();

private void button2_Click(object sender, EventArgs e)

SqlConnection Con = new SqlConnection(@"Data Source=DESKTOP-85FCCNA\MINU;


Integrated Security=true; Initial Catalog=event_management");

Con.Open();

SqlCommand cmd = new SqlCommand(("Select*from fam_reunion"), Con);

SqlDataAdapter da = new SqlDataAdapter(cmd);

DataSet ds = new DataSet();

da.Fill(ds);

dataGridView2.DataSource = ds.Tables[0];

Con.Close();

private void button3_Click(object sender, EventArgs e)

PROJECT MODULES
A module is a part of a program. Programs are composed of one or more
independently developed modules that are not combined until the program is
linked. A single module can contain one or several routines. The project
contains the following main modules.
• INDEX MODULE
• USER LOGIN MODULE
• REGISTRATION MODULE
• HOME MODULE
• BIRTHDAY PARTY MODULE
• MUSICAL CONCERT MODULE
• WEDDING MODULE
• FAMILY REUNION MODULE
• NEW YEAR MODULE
• BABY SHOWER MODULE
• ADMIN LOGIN MODULE

INDEX MODULE
In index Module, the user can see a page about the management and events.

USER LOGIN MODULE


In this module, the user can login to register for the event. This module contains
following fields:
• Username : Name of the user
• Password : Set the password for user

REGISTRATION MODULE
In this module, the new user register to book an event. This module contains
following fields:
• Name : Name of the user
• Mobile No : Contact Number of the user
• Email Id : Email id of the user
• Address Line 1 : Address of the user
• Address Line 2 : Second line of the address
• City : City name of the user
• Pincode : Pincode of the place
• Username : Name of the user
• Password : Set the password for the user
• Re-type Password : Retype the password for verification
HOME MODULE
After Login page the user can see the home page where the user can see the list
of events and my clicking the event they can register for the event.

BIRTHDAY PARTY MODULE


In this module, the user can register the event for birthday party. This module
contains following fields:
• Name : Name of the user
• Mobile No : Mobile number of the user
• Date of Event : Date of event going to be held
• Event Place : Place of the event to be held
• Address Line 1 : Address of the event place
• Address Line 2 : Second line of the address
• City : City of the place of event
• Pincode : Pincode of the place
• Type : Type of event needed

MUSICAL CONCERT MODULE


In this module, the user can register the event for musical concert. This module
contains following fields:
• Name : Name of the user
• Mobile No : Mobile number of the user
• Date of Event : Date of event going to be held
• Event Place : Place of the event to be held
• Address Line 1 : Address of the event place
• Address Line 2 : Second line of the address
• City : City of the place of event
• Pincode : Pincode of the place
• Type : Type of event needed

FAMILY REUNION MODULE


In this module, the user can register the event for family reunion. This module
contains following fields:
• Name : Name of the user
• Mobile No : Mobile number of the user
• Date of Event : Date of event going to be held
• Event Place : Place of the event to be held
• Address Line 1 : Address of the event place
• Address Line 2 : Second line of the address
• City : City of the place of event
• Pincode : Pincode of the place
• Type : Type of event needed

WEDDING MODULE
In this module, the user can register the event for wedding. This module
contains following fields:
• Name : Name of the user
• Mobile No : Mobile number of the user
• Date of Event : Date of event going to be held
• Event Place : Place of the event to be held
• Address Line 1 : Address of the event place
• Address Line 2 : Second line of the address
• City : City of the place of event
• Pincode : Pincode of the place
• Type : Type of event needed

NEW YEAR MODULE


In this module, the user can register the event for new year. This module
contains following fields:
• Name : Name of the user
• Mobile No : Mobile number of the user
• Date of Event : Date of event going to be held
• Event Place : Place of the event to be held
• Address Line 1 : Address of the event place
• Address Line 2 : Second line of the address
• City : City of the place of event
• Pincode : Pincode of the place
• Type : Type of event needed

BABY SHOWER MODULE


In this module, the user can register the event for baby shower. This module
contains following fields:
• Name : Name of the user
• Mobile No : Mobile number of the user
• Date of Event : Date of event going to be held
• Event Place : Place of the event to be held
• Address Line 1 : Address of the event place
• Address Line 2 : Second line of the address
• City : City of the place osf event
• Pincode : Pincode of the place
• Type : Type of event needed

ADMIN LOGIN MODULE


In this module, the admin can login to view the event details and can view the
registered list and details and prepare for the event. This module contains the
following fields:
• Username : Name of the admin
• Password : Set the password for the user

You might also like