Commit 0d9fab88 authored by chris.crook's avatar chris.crook

> basic navigation wip done

parent 747fe30e
......@@ -111,6 +111,11 @@ public class MainActivity extends AppCompatActivity {
}
}
public void navigate (View view){
Intent intent = new Intent(this,register_page.class);
startActivity(intent);
}
public void saveandclose(){
try{
FileWriter stream = new FileWriter(file1, false);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment