public PushAuthScreen() {
    super(new VerticalFieldManager(), Field.FOCUSABLE);
    me = this;
    String time = new Long(new Date().getTime()).toString();
    timestamp = time.substring(0, time.length() - 3);

    add(new LabelField("You will ressieve push notifications"));

    logButton = new ButtonField("OK", ButtonField.CONSUME_CLICK);
    logButton.setChangeListener(me);
    add(logButton);

    logButton.setFocus();
  }