From f3a7b0408a6f21f5a0131ee080b094aeb7c8c402 Mon Sep 17 00:00:00 2001 From: Drew Fisher Date: Sat, 18 Jul 2009 21:48:01 -0700 Subject: [PATCH] Add disclaimer so people know what their data will be used for. --- newpersonwizard.py | 2 +- pagenetid.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/newpersonwizard.py b/newpersonwizard.py index 820d47e..56ebde5 100644 --- a/newpersonwizard.py +++ b/newpersonwizard.py @@ -12,7 +12,7 @@ class NewPersonWizard(QWizard): self.addPage(PageNetID()) self.addPage(PageNewUserData()) self.addPage(PageCommit(self,self.db)) - self.resize(400,300) + self.resize(400,500) self.show() if __name__ == "__main__": diff --git a/pagenetid.py b/pagenetid.py index 38f593c..48b5447 100644 --- a/pagenetid.py +++ b/pagenetid.py @@ -7,10 +7,13 @@ class PageNetID(QWizardPage): self.instructions = QLabel("&Enter your NetID:") self.netid = QLineEdit() self.instructions.setBuddy(self.netid) + self.disclaimer = QLabel("This information is being collected to be distributed to residents of the Clements, Lechner, and McFadden dorms for the 2009-2010 school year. By entering your NetID and other information into this database, you give permission for this information to be distributed to other residents who have also shared their personal information.\n\nThe information collected will be used to make the White Pages, a listing of contact information for residents of Clements, Lechner, and McFadden Halls, to be published later this year.") + self.disclaimer.setWordWrap(True) self.registerField("netid*", self.netid) self.grid = QGridLayout() self.grid.addWidget(self.instructions,0,0) self.grid.addWidget(self.netid,0,1) + self.grid.addWidget(self.disclaimer,1,0,1,2) self.setLayout(self.grid) self.setTitle("Move-in Wizard") self.setSubTitle("Enter your NetID:") -- 2.39.2