-1
func getInformation() {
ref = Database.database().reference()
Handle = ref?.child("Users").observe(.childAdded, with: { (snapshot) in
if let item = snapshot.value as? String {
self.name.text = item
}