From: Drew Fisher Date: Sun, 19 Jul 2009 04:48:01 +0000 (-0700) Subject: Add disclaimer so people know what their data will be used for. X-Git-Url: http://git.zarvox.org/shortlog/static/%24c%5B2%5D?a=commitdiff_plain;h=f3a7b0408a6f21f5a0131ee080b094aeb7c8c402;p=wp3.git Add disclaimer so people know what their data will be used for. --- 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:")