PageRenderTime 42ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/lib/DDGC/Feedback/Config/Partner.pm

https://github.com/anaymalpani/community-platform
Perl | 17 lines | 14 code | 2 blank | 1 comment | 0 complexity | b6388b964a1346c312d7eece0f99fa46 MD5 | raw file
Possible License(s): Apache-2.0
  1. package DDGC::Feedback::Config::Partner;
  2. # ABSTRACT:
  3. use strict;
  4. use warnings;
  5. sub feedback_title { "I'd like to learn about partnerships with DuckDuckGo" }
  6. sub feedback {[
  7. { description => "Please see our <a href='https://duck.co/help/company/partnerships'>partnership</a> and <a href='https://duckduckgo.com/api'>API</a> guidelines before answering the below:", type => "info", icon => "newspaper" },
  8. { name => "partner_url", description => "What is the URL for your product or organization? ", type => "text", icon => "globe" },
  9. { name => "partner_description", description => "How do you see your organization and DuckDuckGo working together? ", type => "textarea", icon => "dax" },
  10. { name => 'hearabout', description => "Where did you hear about DuckDuckGo?", type => "text", icon => "dax", optional => 1 },
  11. { name => 'submit', description => "Send", icon => "mail", cssclass => "fb-step--submit" }
  12. ]}
  13. 1;